From 97bb0983f1015506854971fda262da4dafefc6dd Mon Sep 17 00:00:00 2001 From: Attila Gazso <230163+agazso@users.noreply.github.com> Date: Fri, 18 Nov 2022 22:29:09 +0100 Subject: [PATCH] fix: disable file creation by default --- upload.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload.ts b/upload.ts index fd36f13..d5218ab 100644 --- a/upload.ts +++ b/upload.ts @@ -484,7 +484,7 @@ async function main() { deferred: false, retries: 5, parallelism: 50, - writeFiles: true, + writeFiles: false, onSuccessfulChunkUpload: async (chunk, context) => { // console.log('✅', `${context.beeUrl}/chunks/${toHexString(chunk.address())}`) },