diff options
| author | Joshua Harlow <harlowja@yahoo-inc.com> | 2014-09-10 17:13:08 -0700 |
|---|---|---|
| committer | Joshua Harlow <harlowja@gmail.com> | 2014-09-20 09:03:11 -0700 |
| commit | aaa51fd689db73f40088eba7a07ac8a131aad528 (patch) | |
| tree | 2ba39462686ea7f9e8597e7b18500f2cffe25e65 /taskflow/engines/worker_based/executor.py | |
| parent | ce628870acd0b278f399ef80745c9c0966cc1630 (diff) | |
| download | taskflow-aaa51fd689db73f40088eba7a07ac8a131aad528.tar.gz | |
Switch to using oslo.utils and oslo.serialization
Instead of copying modules from the incubator into taskflow
we can now directly use these same modules from supported
libraries instead so this moves the usage of everything except
uuidutils which wasn't moved over to using those newly published
libraries.
Part of blueprint integrate-and-use-oslo-utils-serialization
Change-Id: I1183bda96e1ddb062d9cab91990186f0f56f0a0e
Diffstat (limited to 'taskflow/engines/worker_based/executor.py')
| -rw-r--r-- | taskflow/engines/worker_based/executor.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/taskflow/engines/worker_based/executor.py b/taskflow/engines/worker_based/executor.py index 9ff7078..35fb0bb 100644 --- a/taskflow/engines/worker_based/executor.py +++ b/taskflow/engines/worker_based/executor.py @@ -18,12 +18,13 @@ import functools import logging import threading +from oslo.utils import timeutils + from taskflow.engines.action_engine import executor from taskflow.engines.worker_based import cache from taskflow.engines.worker_based import protocol as pr from taskflow.engines.worker_based import proxy from taskflow import exceptions as exc -from taskflow.openstack.common import timeutils from taskflow.types import timing as tt from taskflow.utils import async_utils from taskflow.utils import misc |
