diff --git a/sanic/sanic.py b/sanic/sanic.py index 3f18a3d4..4ac037e1 100644 --- a/sanic/sanic.py +++ b/sanic/sanic.py @@ -59,6 +59,7 @@ class Sanic: :param uri: path of the URL :param methods: list or tuple of methods allowed + :param host: :return: decorated function """ @@ -106,6 +107,7 @@ class Sanic: :param uri: path of the URL :param methods: list or tuple of methods allowed, these are overridden if using a HTTPMethodView + :param host: :return: function or class instance """ # Handle HTTPMethodView differently @@ -304,6 +306,10 @@ class Sanic: :param sock: Socket for the server to accept connections from :param workers: Number of processes received before it is respected + :param loop: + :param backlog: + :param stop_event: + :param register_sys_signals: :param protocol: Subclass of asyncio protocol class :return: Nothing """ @@ -318,11 +324,9 @@ class Sanic: serve(**server_settings) else: serve_multiple(server_settings, workers, stop_event) - except Exception as e: log.exception( 'Experienced exception while trying to serve') - log.info("Server Stopped") def stop(self):