You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Your class needs to have defaults for all parameter in the c'tor
158
+
2. The c'tor must have a parameter named `auto_task_service`
159
+
3. The method shouldn't have any return value (as it's invoked async)
160
+
161
+
In case you want your method to retry certain cases, you need to raise `RetryableTaskException`.
162
+
You can provide on optional `delay` time for the retry, set `count_retries=False` in case you don't want to limit retries, or use `max_retries_func` to specify a function which will be invoked when the defined maximum number of retries is exhausted.
163
+
138
164
#### Settings
139
165
140
166
The following settings can be used to fine tune django-eb-sqs. Copy them into your Django `settings.py` file.
0 commit comments