Skip to content

Commit

Permalink
Version bump to 0.3.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
sideshowdave7 committed Jul 19, 2017
1 parent c8840d9 commit a2981f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion eventmq/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__author__ = 'EventMQ Contributors'
__version__ = '0.3.4.7'
__version__ = '0.3.4.8'

PROTOCOL_VERSION = 'eMQP/1.0'

Expand Down
5 changes: 3 additions & 2 deletions eventmq/jobmanager.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,9 @@ def _start_event_loop(self):
"""
# Acknowledgment has come
# Send a READY for each previously available worker
for _ in self.workers:
self.send_ready()
if hasattr(self, '_workers'):
for _ in self._workers:
self.send_ready()

self.status = STATUS.running

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='eventmq',
version='0.3.4.7',
version='0.3.4.8',
description='EventMQ job execution and messaging system based on ZeroMQ',
packages=find_packages(),
install_requires=['pyzmq==15.4.0',
Expand Down

0 comments on commit a2981f6

Please sign in to comment.