Skip to content

Commit

Permalink
debug 2
Browse files Browse the repository at this point in the history
  • Loading branch information
anurag4DSB committed Dec 13, 2024
1 parent c0fe89f commit f0fd5ca
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/scripts/e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -268,9 +268,10 @@ log_and_run echo "Verifying bucket deletion with name '$BUCKET_TO_BE_DELETED'...

# Check if the bucket has been deleted
log_and_run aws s3 ls --endpoint-url "$S3_ENDPOINT"

AWS_MAX_ATTEMPTS= $ATTEMPTS
AWS_RETRY_DELAY=$DELAY
# Run head-bucket to check if the bucket has been deleted
BUCKET_HEAD_RESULT=$(log_and_run AWS_MAX_ATTEMPTS=$ATTEMPTS AWS_RETRY_DELAY=$DELAY aws --endpoint-url "$S3_ENDPOINT" s3api head-bucket --bucket "$BUCKET_TO_BE_DELETED" --profile iam 2>&1 || true)
BUCKET_HEAD_RESULT="$(log_and_run aws --endpoint-url "$S3_ENDPOINT" s3api head-bucket --bucket "$BUCKET_TO_BE_DELETED" --profile iam 2>&1 || true)"

# Log the actual error result for debugging purposes
log_and_run echo "head-bucket result: $BUCKET_HEAD_RESULT"
Expand Down

0 comments on commit f0fd5ca

Please sign in to comment.