diff options
| author | Joshua Harlow <harlowja@gmail.com> | 2015-05-11 23:00:55 -0700 |
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2015-05-11 23:00:58 -0700 |
| commit | efd6d53aceb7de8723fe077c4a9f05a75f2875d7 (patch) | |
| tree | 0b74d85bd436e6fb1206a12ba691b23ad54f66fc /taskflow/engines/action_engine/engine.py | |
| parent | 4e550ba48ca76c93d58dcdeecf96d774a5ee62f0 (diff) | |
| download | taskflow-efd6d53aceb7de8723fe077c4a9f05a75f2875d7.tar.gz | |
Executors come in via options config, not keyword arguments
Change-Id: I5654b5db0db6b8e9884dae5cc285400edce2a698
Diffstat (limited to 'taskflow/engines/action_engine/engine.py')
| -rw-r--r-- | taskflow/engines/action_engine/engine.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/engines/action_engine/engine.py b/taskflow/engines/action_engine/engine.py index bed43e8..5eb4fee 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 |
