diff options
| author | Joshua Harlow <harlowja@gmail.com> | 2014-12-12 22:00:51 -0800 |
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2014-12-12 22:05:03 -0800 |
| commit | f5060ff41ea3fd2f9282c00a5a63f110918568b0 (patch) | |
| tree | 8988b7e9c25562966db5c317f8d97d4a6638637c /taskflow/engines/worker_based/executor.py | |
| parent | b4e4e214cb69a3f2b9d90c287dcc2dd521a7f425 (diff) | |
| download | taskflow-f5060ff41ea3fd2f9282c00a5a63f110918568b0.tar.gz | |
Remove the base postfix from the internal task executor
There is no need to have a postfix of 'base' in the task
executor as it is obvious by having a metaclass of abc.ABCMeta
and the fact that it has no methods that the task executor base
is a base class and should be used as such without a 'base'
postfix to also signify the same information.
Change-Id: I1f5cbcd29f1453d68e774f9f9f733eb873efc7cb
Diffstat (limited to 'taskflow/engines/worker_based/executor.py')
| -rw-r--r-- | taskflow/engines/worker_based/executor.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/taskflow/engines/worker_based/executor.py b/taskflow/engines/worker_based/executor.py index 3943a6e..bce92cc 100644 --- a/taskflow/engines/worker_based/executor.py +++ b/taskflow/engines/worker_based/executor.py @@ -69,7 +69,7 @@ class PeriodicWorker(object): self._timeout.reset() -class WorkerTaskExecutor(executor.TaskExecutorBase): +class WorkerTaskExecutor(executor.TaskExecutor): """Executes tasks on remote workers.""" def __init__(self, uuid, exchange, topics, |
