Browse Source

Update note about Sanic issues (Fixes #1365)

pull/1370/head
Miguel Grinberg 9 months ago
parent
commit
287d6ed551
Failed to extract signature
  1. 5
      docs/server.rst
  2. 2
      examples/server/sanic/app.py
  3. 2
      examples/server/sanic/fiddle.py
  4. 2
      examples/server/sanic/latency.py

5
docs/server.rst

@ -969,9 +969,8 @@ Sanic
~~~~~
.. note::
Due to some backward incompatible changes introduced in recent versions of
Sanic, it is currently recommended that a Sanic application is deployed with
the ASGI integration.
The Sanic integration has not been updated in a long time. It is currently
recommended that a Sanic application is deployed with the ASGI integration.
.. _using-a-message-queue:

2
examples/server/sanic/app.py

@ -4,7 +4,7 @@ from sanic.response import html
import socketio
sio = socketio.AsyncServer(async_mode='sanic')
app = Sanic(name='sanic_application')
app = Sanic(__name__)
sio.attach(app)

2
examples/server/sanic/fiddle.py

@ -4,7 +4,7 @@ from sanic.response import html
import socketio
sio = socketio.AsyncServer(async_mode='sanic')
app = Sanic()
app = Sanic(__name__)
sio.attach(app)

2
examples/server/sanic/latency.py

@ -4,7 +4,7 @@ from sanic.response import html
import socketio
sio = socketio.AsyncServer(async_mode='sanic')
app = Sanic()
app = Sanic(__name__)
sio.attach(app)

Loading…
Cancel
Save