Browse Source

Ignore the result of PeriodicTask's by default.

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

+ 1 - 0
celery/task/base.py

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