mirror of
https://github.com/django/daphne.git
synced 2025-07-30 16:59:46 +03:00
Rename ports to listeners.
This commit is contained in:
parent
0b654e0595
commit
3d9f808d77
|
@ -50,7 +50,7 @@ class Server(object):
|
|||
if len(self.endpoints) == 0:
|
||||
raise UserWarning("No endpoints. This server will not listen on anything.")
|
||||
|
||||
self.ports = []
|
||||
self.listeners = []
|
||||
self.signal_handlers = signal_handlers
|
||||
self.action_logger = action_logger
|
||||
self.http_timeout = http_timeout
|
||||
|
@ -97,7 +97,7 @@ class Server(object):
|
|||
logger.info("Listening on endpoint %s" % socket_description)
|
||||
# Twisted requires str on python2 (not unicode) and str on python3 (not bytes)
|
||||
ep = serverFromString(reactor, str(socket_description))
|
||||
self.ports.append(ep.listen(self.factory))
|
||||
self.listeners.append(ep.listen(self.factory))
|
||||
|
||||
reactor.run(installSignalHandlers=self.signal_handlers)
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user