Skip to content

Commit

Permalink
Increase default retries
Browse files Browse the repository at this point in the history
  • Loading branch information
emdoyle committed Aug 19, 2024
1 parent 6ccd77a commit ed98c3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
AWS_DEFAULT_REGION: str = env.str("AWS_DEFAULT_REGION", "us-east-1")
AWS_ACCOUNT_ID: str = env.str("AWS_ACCOUNT_ID")
AWS_LAMBDA_UPDATE_INITIAL_BACKOFF: int = env.int("AWS_LAMBDA_UPDATE_INITIAL_BACKOFF", 1)
AWS_LAMBDA_UPDATE_MAX_RETRIES: int = env.int("AWS_LAMBDA_UPDATE_MAX_RETRIES", 5)
AWS_LAMBDA_UPDATE_MAX_RETRIES: int = env.int("AWS_LAMBDA_UPDATE_MAX_RETRIES", 8)

ECR_REPO_POLICY: dict[str, Any] = {
"Version": "2012-10-17",
Expand Down

0 comments on commit ed98c3d

Please sign in to comment.