Browse Source

fix backwards compatible problems with python-engineio 3.0

pull/221/head
Miguel Grinberg 6 years ago
parent
commit
fce2006eee
No known key found for this signature in database GPG Key ID: 36848B262DF5F06C
  1. 4
      socketio/middleware.py
  2. 8
      socketio/tornado.py

4
socketio/middleware.py

@ -39,3 +39,7 @@ class WSGIApp(engineio.WSGIApp):
class Middleware(WSGIApp): class Middleware(WSGIApp):
"""This class has been renamed to WSGIApp and is now deprecated.""" """This class has been renamed to WSGIApp and is now deprecated."""
def __init__(self, socketio_app, wsgi_app=None,
socketio_path='socket.io'):
super(Middleware, self).__init__(socketio_app, wsgi_app,
socketio_path=socketio_path)

8
socketio/tornado.py

@ -1,7 +1,11 @@
import sys import sys
if sys.version_info >= (3, 5): if sys.version_info >= (3, 5):
from engineio.async_tornado import get_tornado_handler as \ try:
get_engineio_handler from engineio.async_drivers.tornado import get_tornado_handler as \
get_engineio_handler
except ImportError:
from engineio.async_tornado import get_tornado_handler as \
get_engineio_handler
def get_tornado_handler(socketio_server): def get_tornado_handler(socketio_server):

Loading…
Cancel
Save