Browse Source

Ignore the result of PeriodicTask's by default.

Ask Solem 15 years ago
parent
commit
386edbaa90
1 changed files with 1 additions and 0 deletions
  1. 1 0
      celery/task/base.py

+ 1 - 0
celery/task/base.py

@@ -662,6 +662,7 @@ class PeriodicTask(Task):
     """
     abstract = True
     run_every = timedelta(days=1)
+    ignore_result = True
     type = "periodic"
 
     def __init__(self):