Преглед на файлове

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 години
родител
ревизия
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`;