The loop argument of serve()
I suppose that a new loop should be created only if the loop argument is not provided
This commit is contained in:
parent
435dc72aa1
commit
6c95ac3c95
|
@ -298,7 +298,7 @@ def serve(host, port, request_handler, error_handler, before_start=None,
|
||||||
:param protocol: subclass of asyncio protocol class
|
:param protocol: subclass of asyncio protocol class
|
||||||
:return: Nothing
|
:return: Nothing
|
||||||
"""
|
"""
|
||||||
if not run_async:
|
if not loop:
|
||||||
loop = async_loop.new_event_loop()
|
loop = async_loop.new_event_loop()
|
||||||
asyncio.set_event_loop(loop)
|
asyncio.set_event_loop(loop)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user