Skip to content

Commit

Permalink
Merge pull request #80 from noisyboiler/eventlet-sleep-buf-fix
Browse files Browse the repository at this point in the history
fix eventlet sleep
  • Loading branch information
noisyboiler authored Dec 20, 2018
2 parents 932f13d + d55c740 commit a5346d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name='wampy',
version='0.9.18',
version='0.9.19',
description='WAMP RPC and Pub/Sub for python apps and microservices',
long_description=long_description,
url='https://github.com/noisyboiler/wampy',
Expand Down
2 changes: 1 addition & 1 deletion wampy/backends/eventlet_.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def _wait_for_message(self, timeout):

with eventlet.Timeout(timeout):
while q.qsize() == 0:
eventlet.sleep(time=0.1)
eventlet.sleep()

message = q.get()
return message

0 comments on commit a5346d8

Please sign in to comment.