Skip to content

Commit 59fbf8a

Browse files
author
Alexey Tsitkin
committed
changing default to 30 retries
1 parent e521d38 commit 59fbf8a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ The following settings can be used to fine tune django-eb-sqs. Copy them into yo
147147
- EB_SQS_REDIS_EXPIRY (`604800`): Default expiry time in seconds until a group is removed
148148
- EB_SQS_REDIS_KEY_PREFIX (`eb-sqs-`): Prefix used for all Redis keys
149149
- EB_SQS_USE_PICKLE (`False`): Enable to use `pickle` to serialize task parameters. Uses `json` as default.
150-
- EB_SQS_AWS_MAX_RETRIES (`10`): Default retry limit on a boto3 call to AWS SQS.
150+
- EB_SQS_AWS_MAX_RETRIES (`30`): Default retry limit on a boto3 call to AWS SQS.
151151

152152

153153
### Development

eb_sqs/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@
3131

3232
DEAD_LETTER_MODE = getattr(settings, 'EB_SQS_DEAD_LETTER_MODE', False) # type: bool
3333

34-
AWS_MAX_RETRIES = getattr(settings, 'EB_SQS_AWS_MAX_RETRIES', 10) # type: int
34+
AWS_MAX_RETRIES = getattr(settings, 'EB_SQS_AWS_MAX_RETRIES', 30) # type: int

0 commit comments

Comments
 (0)