From ca6360b4e19db0f5031aa68f4f3889c8cb13aeee Mon Sep 17 00:00:00 2001 From: Jeremy Farnault Date: Fri, 27 Jan 2023 13:58:41 +1300 Subject: [PATCH] Trying to increase the max concurrent requests --- entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index 6e4de97..da1d89a 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -109,6 +109,9 @@ function main { get_command validate_source_and_destination + # Increase the max concurrent requests for se + aws configure set default.s3.max_concurrent_requests 255 + aws --version if [ "$COMMAND" == "cp" ] || [ "$COMMAND" == "mv" ] || [ "$COMMAND" == "sync" ]