add reuse_port to create_server

This commit is contained in:
Raphael Deem 2017-02-28 19:21:53 -08:00
parent 927d2761f7
commit c3386dec84

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: