From 9726c0b7eecde84d4aad0c563dce1aae96da4a53 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Thu, 21 Aug 2025 12:44:16 +0400 Subject: [PATCH] refac/fix: s3 checksum validation --- backend/open_webui/storage/provider.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/open_webui/storage/provider.py b/backend/open_webui/storage/provider.py index 41a92fafe9..4292e53827 100644 --- a/backend/open_webui/storage/provider.py +++ b/backend/open_webui/storage/provider.py @@ -112,6 +112,9 @@ class S3StorageProvider(StorageProvider): "use_accelerate_endpoint": S3_USE_ACCELERATE_ENDPOINT, "addressing_style": S3_ADDRESSING_STYLE, }, + # KIT change - see https://github.com/boto/boto3/issues/4400#issuecomment-2600742103∆ + request_checksum_calculation="when_required", + response_checksum_validation="when_required", ) # If access key and secret are provided, use them for authentication