浏览代码

Pass None for now and timezone arguments which were missing.
(Perhaps this method call should use kwargs to avoid this happening
again?)

Jasper Bryant-Greene 10 年之前
父节点
当前提交
68dd435fd5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      celery/app/base.py

+ 1 - 1
celery/app/base.py

@@ -373,7 +373,7 @@ class Celery(object):
             expires, retries, chord,
             maybe_list(link), maybe_list(link_error),
             reply_to or self.oid, time_limit, soft_time_limit,
-            self.conf.CELERY_SEND_TASK_SENT_EVENT,
+            self.conf.CELERY_SEND_TASK_SENT_EVENT, None, None,
             root_id, parent_id,
         )