فهرست منبع

Ignore the result of PeriodicTask's by default.

Ask Solem 15 سال پیش
والد
کامیت
386edbaa90
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  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):