Merge pull request #499 from r0fls/498

add reuse_port to create_server
This commit is contained in:
Raphael Deem 2017-02-28 19:24:35 -08:00 committed by GitHub
commit ff321fc355

View File

@ -492,7 +492,7 @@ class Sanic:
before_start=None, after_start=None,
before_stop=None, after_stop=None, ssl=None,
sock=None, loop=None, protocol=HttpProtocol,
backlog=100, stop_event=None):
backlog=100, stop_event=None, reuse_port=True):
"""Asynchronous version of `run`.
NOTE: This does not support multiprocessing and is not the preferred
@ -512,7 +512,7 @@ class Sanic:
before_start=None, after_start=None, before_stop=None,
after_stop=None, ssl=None, sock=None, workers=1, loop=None,
protocol=HttpProtocol, backlog=100, stop_event=None,
register_sys_signals=True, run_async=False):
register_sys_signals=True, run_async=False, reuse_port=True):
"""Helper function used by `run` and `create_server`."""
if loop is not None: