Fixed issue #234 where daphne still listen on 127.0.0.1:8000 when --fd 0 is provided
This commit is contained in:
Sylvain Prat 2018-11-19 10:52:49 +01:00 committed by GitHub
parent 5722d4e7ea
commit 17bf88c34c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
] ]
): ):