From 287d6ed551090eed822f924bb548ba93923dd4d1 Mon Sep 17 00:00:00 2001 From: Miguel Grinberg Date: Fri, 19 Jul 2024 18:56:59 +0100 Subject: [PATCH] Update note about Sanic issues (Fixes #1365) --- docs/server.rst | 5 ++--- examples/server/sanic/app.py | 2 +- examples/server/sanic/fiddle.py | 2 +- examples/server/sanic/latency.py | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/server.rst b/docs/server.rst index b4d6980..c20adf9 100644 --- a/docs/server.rst +++ b/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: diff --git a/examples/server/sanic/app.py b/examples/server/sanic/app.py index e10d764..7f02d23 100644 --- a/examples/server/sanic/app.py +++ b/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) diff --git a/examples/server/sanic/fiddle.py b/examples/server/sanic/fiddle.py index 8fe4db8..5ecb509 100644 --- a/examples/server/sanic/fiddle.py +++ b/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) diff --git a/examples/server/sanic/latency.py b/examples/server/sanic/latency.py index a231d6e..8f14992 100644 --- a/examples/server/sanic/latency.py +++ b/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)