Parcourir la source

Fixes typo with TIME_LIMIT default for tasks

Ask Solem il y a 12 ans
Parent
commit
04178b105f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      celery/app/task.py

+ 2 - 2
celery/app/task.py

@@ -198,11 +198,11 @@ class Task(object):
     serializer = None
 
     #: Hard time limit.
-    #: Defaults to the :setting:`CELERY_TASK_TIME_LIMIT` setting.
+    #: Defaults to the :setting:`CELERYD_TASK_TIME_LIMIT` setting.
     time_limit = None
 
     #: Soft time limit.
-    #: Defaults to the :setting:`CELERY_TASK_SOFT_TIME_LIMIT` setting.
+    #: Defaults to the :setting:`CELERYD_TASK_SOFT_TIME_LIMIT` setting.
     soft_time_limit = None
 
     #: The result store backend used for this task.