From f5060ff41ea3fd2f9282c00a5a63f110918568b0 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Fri, 12 Dec 2014 22:00:51 -0800 Subject: 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 --- taskflow/engines/worker_based/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'taskflow/engines/worker_based/executor.py') 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, -- cgit v1.2.1