Browse Source

Default max retries for retry policy is now 5

Ask Solem 12 years ago
parent
commit
a2e0ee4f0b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      celery/app/defaults.py

+ 1 - 1
celery/app/defaults.py

@@ -134,7 +134,7 @@ NAMESPACES = {
         'STORE_ERRORS_EVEN_IF_IGNORED': Option(False, type='bool'),
         'TASK_PUBLISH_RETRY': Option(True, type='bool'),
         'TASK_PUBLISH_RETRY_POLICY': Option({
-                'max_retries': 100,
+                'max_retries': 5,
                 'interval_start': 0,
                 'interval_max': 1,
                 'interval_step': 0.2}, type='dict'),