mirror of
https://github.com/django/daphne.git
synced 2024-11-21 23:46:33 +03:00
Fixed #234: Don't listen on port 8000 when provided a file descriptor
This commit is contained in:
parent
5722d4e7ea
commit
de15dcb4d1
|
@ -226,7 +226,7 @@ class CommandLineInterface(object):
|
||||||
args.host,
|
args.host,
|
||||||
args.port is not None,
|
args.port is not None,
|
||||||
args.unix_socket,
|
args.unix_socket,
|
||||||
args.file_descriptor,
|
args.file_descriptor is not None,
|
||||||
args.socket_strings,
|
args.socket_strings,
|
||||||
]
|
]
|
||||||
):
|
):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user