File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 3131
3232DEAD_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
You can’t perform that action at this time.
0 commit comments