From 8eaaec3430e6246cb5dbf4210c8a80e586bd8e7f Mon Sep 17 00:00:00 2001 From: Jose-Matsuda Date: Wed, 10 Apr 2024 07:21:39 -0400 Subject: [PATCH] 10Gb --- internal/file.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/file.go b/internal/file.go index fc0ad565..3778b2b8 100644 --- a/internal/file.go +++ b/internal/file.go @@ -241,8 +241,8 @@ func (fh *FileHandle) partSize() uint64 { if maxPartSize != 0 { size = MinUInt64(maxPartSize, size) } - // Something I could test here is increasing this and then re uploading and trying things - size = 625 * 1024 * 1024 // ~625 MB + // Try 10Gb + size = 10000 * 1024 * 1024 // ~10GB return size }