Skip to content

Commit

Permalink
Merge pull request #189 from muatik/dev
Browse files Browse the repository at this point in the history
fixed ssl configuration issue
  • Loading branch information
miguelgrinberg committed Jan 2, 2016
2 parents 20f68f2 + 9cd254c commit 580e43b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_socketio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ def run_server():
if websocket:
self.wsgi_server = pywsgi.WSGIServer(
(host, port), app, handler_class=WebSocketHandler,
log=log)
log=log, **kwargs)
else:
self.wsgi_server = pywsgi.WSGIServer((host, port), app,
log=log)
Expand Down

0 comments on commit 580e43b

Please sign in to comment.