From e65ee3cba8974a97ba09a39ffdf7412972e00550 Mon Sep 17 00:00:00 2001 From: Srigovind Nayak <5201843+konidev20@users.noreply.github.com> Date: Sun, 5 Oct 2025 18:35:19 +0530 Subject: [PATCH] fix: keep the PutBlock Size to 100 MiB No complaints in the past. --- internal/backend/azure/azure.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/backend/azure/azure.go b/internal/backend/azure/azure.go index 6669a47cc..576985b5b 100644 --- a/internal/backend/azure/azure.go +++ b/internal/backend/azure/azure.go @@ -42,7 +42,7 @@ type Backend struct { } const singleUploadMaxSize = 256 * 1024 * 1024 -const singleBlockMaxSize = 32 * 1024 * 1024 +const singleBlockMaxSize = 100 * 1024 * 1024 const defaultListMaxItems = 5000 // make sure that *Backend implements backend.Backend