summaryrefslogtreecommitdiff
path: root/taskflow/conductors
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2015-03-03 16:45:39 +0000
committerGerrit Code Review <review@openstack.org>2015-03-03 16:45:39 +0000
commit5777e9469b420e3135cd029a789f033a34157b21 (patch)
tree7f59d092829418f558c4c14f978e19449bdbc0d8 /taskflow/conductors
parent8a718aa03d09328516ffc47741921caaa9a19737 (diff)
parentc9c0505814a88ecea0c995aa4f0dd97883978559 (diff)
downloadtaskflow-5777e9469b420e3135cd029a789f033a34157b21.tar.gz
Merge "Use debtcollector library to replace internal utility"
Diffstat (limited to 'taskflow/conductors')
-rw-r--r--taskflow/conductors/single_threaded.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/taskflow/conductors/single_threaded.py b/taskflow/conductors/single_threaded.py
index aa90645..c8ab5a0 100644
--- a/taskflow/conductors/single_threaded.py
+++ b/taskflow/conductors/single_threaded.py
@@ -14,6 +14,8 @@
# License for the specific language governing permissions and limitations
# under the License.
+from debtcollector import moves
+
from taskflow.conductors.backends import impl_blocking
from taskflow.utils import deprecation
@@ -23,6 +25,6 @@ deprecation.removed_module(__name__,
version="0.8", removal_version="?")
# TODO(harlowja): remove this proxy/legacy class soon...
-SingleThreadedConductor = deprecation.moved_inheritable_class(
+SingleThreadedConductor = moves.moved_class(
impl_blocking.BlockingConductor, 'SingleThreadedConductor',
__name__, version="0.8", removal_version="?")