diff --git a/awx/main/management/commands/run_socketio_service.py b/awx/main/management/commands/run_socketio_service.py index c6a82b7108..b8ffaee35e 100644 --- a/awx/main/management/commands/run_socketio_service.py +++ b/awx/main/management/commands/run_socketio_service.py @@ -106,7 +106,7 @@ class Command(NoArgsCommand): if os.path.exists('/etc/awx/awx.cert') and os.path.exists('/etc/awx/awx.key'): print 'Listening on port https://0.0.0.0:' + str(socketio_listen_port) server = SocketIOServer(('0.0.0.0', socketio_listen_port), TowerSocket(), resource='socket.io', - keyfiles='/etc/awx/awx.key', certfile='/etc/awx/awx.cert') + keyfile='/etc/awx/awx.key', certfile='/etc/awx/awx.cert') else: print 'Listening on port http://0.0.0.0:' + str(socketio_listen_port) server = SocketIOServer(('0.0.0.0', socketio_listen_port), TowerSocket(), resource='socket.io')