From 31de7e478963ad10719b087c067577025f51f166 Mon Sep 17 00:00:00 2001 From: Florian Metzger-Noel <43704929+flocko-motion@users.noreply.github.com> Date: Wed, 16 Mar 2022 11:38:09 +0100 Subject: [PATCH] Update app.py Sanic applications require a name. Otherwise error: `sanic.exceptions.SanicException: Sanic instance cannot be unnamed. Please use Sanic(name='your_application_name') instead.` --- examples/server/sanic/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/server/sanic/app.py b/examples/server/sanic/app.py index ba0ebe2..8e9ab47 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() +app = Sanic(name='sanic_application') sio.attach(app)