Skip to content

Commit 9bde4be

Browse files
discontinue the customized flask run command
1 parent afbd83e commit 9bde4be

File tree

4 files changed

+19
-78
lines changed

4 files changed

+19
-78
lines changed

docs/index.rst

+7-5
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,13 @@ Werkzeug development server is still used and configured properly inside
8585
available, else the gevent web server is used. If eventlet and gevent are not
8686
installed, the Werkzeug development web server is used.
8787

88-
The command line interface based on click introduced in Flask 0.11 is also
89-
supported. This extension provides a new version of the ``flask run`` command
90-
that is appropriate for starting the Socket.IO server. Example usage::
91-
92-
$ FLASK_APP=my_app.py flask run
88+
The ``flask run`` command introduced in Flask 0.11 can be used to start a
89+
Flask-SocketIO development server based on Werkzeug, but this method of starting
90+
the Flask-SocketIO server is not recommended due to lack of WebSocket support.
91+
Previous versions of this package included a customized version of the
92+
``flask run`` command that allowed the use of WebSocket on eventlet and gevent
93+
production servers, but this functionality has been discontinued in favor of the
94+
``socketio.run(app)`` startup method shown above.
9395

9496
The application must serve a page to the client that loads the Socket.IO
9597
library and establishes a connection::

flask_socketio/__init__.py

+12
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import os
12
import sys
23

34
# make sure gevent-socketio is not installed, as it conflicts with
@@ -210,6 +211,17 @@ def loads(*args, **kwargs):
210211
self.server_options.pop('resource', None) or 'socket.io'
211212
if resource.startswith('/'):
212213
resource = resource[1:]
214+
if os.environ.get('FLASK_RUN_FROM_CLI'):
215+
if self.server_options.get('async_mode') is None:
216+
app.logger.warning(
217+
'Flask-SocketIO is Running under Werkzeug, WebSocket is '
218+
'not available.')
219+
self.server_options['async_mode'] = 'threading'
220+
elif self.server_options['async_mode'] != 'threading':
221+
raise RuntimeError(
222+
'The "flask run" command does not support {}, please '
223+
'start your server with "socketio.run(app)".'.format(
224+
self.server_options['async_mode']))
213225
self.server = socketio.Server(**self.server_options)
214226
self.async_mode = self.server.async_mode
215227
for handler in self.handlers:

flask_socketio/cli.py

-68
This file was deleted.

setup.py

-5
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,6 @@
2424
zip_safe=False,
2525
include_package_data=True,
2626
platforms='any',
27-
entry_points={
28-
'flask.commands': [
29-
'run=flask_socketio.cli:run'
30-
],
31-
},
3227
install_requires=[
3328
'Flask>=0.9',
3429
'python-socketio>=2.1.0'

0 commit comments

Comments
 (0)