From aaa51fd689db73f40088eba7a07ac8a131aad528 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 10 Sep 2014 17:13:08 -0700 Subject: 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 --- taskflow/engines/worker_based/executor.py | 3 ++- 1 file changed, 2 insertions(+), 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 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 -- cgit v1.2.1