From 774df717daa738fc2a9ac2f361b5c8bd05dc37be Mon Sep 17 00:00:00 2001 From: Joe Isaacs Date: Fri, 6 Feb 2026 18:28:34 +0000 Subject: [PATCH] chore[ci]: retry upload times Signed-off-by: Joe Isaacs --- scripts/cat-s3.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cat-s3.sh b/scripts/cat-s3.sh index e4c5ccde4ec..cb9edc2a53e 100644 --- a/scripts/cat-s3.sh +++ b/scripts/cat-s3.sh @@ -11,7 +11,7 @@ local_copy=$(mktemp) local_concatenated=$(mktemp) n_failures=0 -while (( n_failures < 5 )); do +while (( n_failures < 100 )); do current_etag=$(aws s3api head-object --bucket "$bucket" --key "$key" --query ETag --output text) if [[ "$current_etag" == "null" ]]; then echo "Failed to retrieve ETag. Exiting."