Skip to content

Commit

Permalink
fix asyncio.async call
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Jul 7, 2016
1 parent 9b42191 commit edb198a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZEO/asyncio/server.py
Expand Up @@ -223,7 +223,7 @@ def __init__(self, storage_server, addr, ssl):
else:
cr = loop.create_unix_server(self.factory, addr, ssl=ssl)

f = asyncio.async(cr)
f = asyncio.async(cr, loop=loop)

@f.add_done_callback
def listenting(f):
Expand Down

0 comments on commit edb198a

Please sign in to comment.