Skip to content

Commit

Permalink
Merge pull request #586 from KeepSafe/drop_unused_params
Browse files Browse the repository at this point in the history
Drop unused host and port from low-level server
  • Loading branch information
asvetlov committed Oct 23, 2015
2 parents 9c37f7e + 19539d6 commit 5049d2e
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions aiohttp/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ def __init__(self, *, loop=None,
logger=server_logger,
access_log=None,
access_log_format=None,
host="",
port=0,
debug=False,
log=None,
**kwargs):
Expand All @@ -103,8 +101,6 @@ def __init__(self, *, loop=None,
self._timeout = timeout # slow request timeout
self._loop = loop if loop is not None else asyncio.get_event_loop()

self.host = host
self.port = port
self.logger = log or logger
self.debug = debug
self.access_log = access_log
Expand Down

0 comments on commit 5049d2e

Please sign in to comment.