소스 검색

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 11 년 전
부모
커밋
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,
         )