From 4d5e36d36f865bf0527cfeb486a4e7f917b28717 Mon Sep 17 00:00:00 2001 From: Florian Metzger-Noel <43704929+flocko-motion@users.noreply.github.com> Date: Wed, 16 Mar 2022 11:53:16 +0100 Subject: [PATCH] Add application name to Sanic example (#892) --- 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)