Merge pull request #42 from Koed00/dev

Replaces qsize == 0 with empty()
This commit is contained in:
Ilan Steemers
2015-08-04 09:40:34 -07:00
3 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -143,7 +143,7 @@ class Sentinel(object):
if not self.start_event.is_set() and not self.stop_event.is_set():
return Conf.STARTING
elif self.start_event.is_set() and not self.stop_event.is_set():
if Conf.QSIZE and self.result_queue.qsize() == 0 and self.task_queue.qsize() == 0:
if self.result_queue.empty() and self.task_queue.empty():
return Conf.IDLE
return Conf.WORKING
elif self.stop_event.is_set() and self.start_event.is_set():
+1 -2
View File
@@ -55,8 +55,7 @@ def test_cluster_initial(r):
assert c.is_starting is False
sleep(0.5)
stat = c.stat
if Conf.QSIZE:
assert stat.status == Conf.IDLE
assert stat.status == Conf.IDLE
assert c.stop() is True
assert c.sentinel.is_alive() is False
assert c.has_stopped
+2 -2
View File
@@ -30,7 +30,7 @@ State
Current state of the cluster:
- **Starting** The cluster is spawning workers and getting ready.
- **Idle** Everything is ok, but there are no tasks to process. [#f1]_
- **Idle** Everything is ok, but there are no tasks to process.
- **Working** Processing tasks like a good cluster should.
- **Stopping** The cluster does not take on any new tasks and is finishing.
- **Stopped** All tasks have been processed and the cluster is shutting down.
@@ -154,4 +154,4 @@ Reference
.. rubric:: Footnotes
.. [#f1] Uses :meth:`multiprocessing.Queue.qsize()` which is not implemented on OS X.
.. [#f1] Uses :meth:`multiprocessing.Queue.qsize()` which is not implemented on OS X and always returns 0.