summaryrefslogtreecommitdiff
path: root/taskflow/conductors
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2015-07-12 18:34:10 -0700
committerJoshua Harlow <harlowja@gmail.com>2015-07-12 18:34:55 -0700
commit9633c5b21787cc50538124e8c1ba0f06ec45c247 (patch)
treee0a39428c7358e5b0f14a5e9d065d1bdf0d006b0 /taskflow/conductors
parente34dde271e11d3cfff751dab3ccb9d3fdf6f9d75 (diff)
downloadtaskflow-9633c5b21787cc50538124e8c1ba0f06ec45c247.tar.gz
Update all removal_version from being ? to being 2.0
Before the 2.0 release it would be great to get these removed so let's mark that version as the version that will no longer have these in it. Change-Id: I66a74d270bf95db005e9febfce1a5e211c7a49f6
Diffstat (limited to 'taskflow/conductors')
-rw-r--r--taskflow/conductors/backends/impl_blocking.py2
-rw-r--r--taskflow/conductors/single_threaded.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/taskflow/conductors/backends/impl_blocking.py b/taskflow/conductors/backends/impl_blocking.py
index 26a75c8..e3f2f5a 100644
--- a/taskflow/conductors/backends/impl_blocking.py
+++ b/taskflow/conductors/backends/impl_blocking.py
@@ -83,7 +83,7 @@ class BlockingConductor(base.Conductor):
raise ValueError("Invalid timeout literal: %s" % (wait_timeout))
self._dead = threading.Event()
- @removals.removed_kwarg('timeout', version="0.8", removal_version="?")
+ @removals.removed_kwarg('timeout', version="0.8", removal_version="2.0")
def stop(self, timeout=None):
"""Requests the conductor to stop dispatching.
diff --git a/taskflow/conductors/single_threaded.py b/taskflow/conductors/single_threaded.py
index e1fafcc..6f50fe7 100644
--- a/taskflow/conductors/single_threaded.py
+++ b/taskflow/conductors/single_threaded.py
@@ -22,7 +22,7 @@ from taskflow.conductors.backends import impl_blocking
# TODO(harlowja): remove this module soon...
removals.removed_module(__name__,
replacement="the conductor entrypoints",
- version="0.8", removal_version="?",
+ version="0.8", removal_version="2.0",
stacklevel=4)
# TODO(harlowja): remove this proxy/legacy class soon...