Просмотр исходного кода

update task destination configuration order (#4783)

I suppose:
1. The routing arguments to :func:`Task.apply_async` has highest priority
2. task attributes has medium priority.
3. `task_routes` has lowest priority.
Fengyuan Chen 6 лет назад
Родитель
Сommit
88a65acb61
1 измененных файлов с 3 добавлено и 3 удалено
  1. 3 3
      docs/userguide/routing.rst

+ 3 - 3
docs/userguide/routing.rst

@@ -573,10 +573,10 @@ Specifying task destination
 
 The destination for a task is decided by the following (in order):
 
-1. The :ref:`routers` defined in :setting:`task_routes`.
-2. The routing arguments to :func:`Task.apply_async`.
-3. Routing related attributes defined on the :class:`~celery.task.base.Task`
+1. The routing arguments to :func:`Task.apply_async`.
+2. Routing related attributes defined on the :class:`~celery.task.base.Task`
    itself.
+3. The :ref:`routers` defined in :setting:`task_routes`.
 
 It's considered best practice to not hard-code these settings, but rather
 leave that as configuration options by using :ref:`routers`;