From efd6d53aceb7de8723fe077c4a9f05a75f2875d7 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Mon, 11 May 2015 23:00:55 -0700 Subject: [PATCH] Executors come in via options config, not keyword arguments Change-Id: I5654b5db0db6b8e9884dae5cc285400edce2a698 --- taskflow/engines/action_engine/engine.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taskflow/engines/action_engine/engine.py b/taskflow/engines/action_engine/engine.py index bed43e8e..5eb4fee6 100644 --- a/taskflow/engines/action_engine/engine.py +++ b/taskflow/engines/action_engine/engine.py @@ -312,7 +312,7 @@ class _ExecutorTextMatch(collections.namedtuple('_ExecutorTextMatch', class ParallelActionEngine(ActionEngine): """Engine that runs tasks in parallel manner. - Supported keyword arguments: + Supported option keys: * ``executor``: a object that implements a :pep:`3148` compatible executor interface; it will be used for scheduling tasks. The following