Merge pull request #500 from r0fls/revert-498

Revert "add reuse_port to create_server"
This commit is contained in:
Raphael Deem 2017-02-28 19:29:29 -08:00 committed by GitHub
commit b87dc37fbb

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, reuse_port=True):
backlog=100, stop_event=None):
"""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, reuse_port=True):
register_sys_signals=True, run_async=False):
"""Helper function used by `run` and `create_server`."""
if loop is not None: