From 5c1c583164ab6d5c95005e37c69fe45f9534e265 Mon Sep 17 00:00:00 2001 From: Ryth Azhur Date: Tue, 5 May 2026 20:09:55 -0400 Subject: [PATCH] =?UTF-8?q?Fix=20example=20backend=20asgi.py=20=E2=80=94?= =?UTF-8?q?=20import=20testapp.clients=20(was=20testapp.mizan=5Fclients)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Discovery convention per MIZAN.md is `clients.py`. The example backend's asgi.py was still importing the older `mizan_clients` name, causing the example Django container to fail to start. Co-Authored-By: Claude Opus 4.7 (1M context) --- examples/django-react-site/backend/testapp/asgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/django-react-site/backend/testapp/asgi.py b/examples/django-react-site/backend/testapp/asgi.py index 7d0e642..8c4ed3b 100644 --- a/examples/django-react-site/backend/testapp/asgi.py +++ b/examples/django-react-site/backend/testapp/asgi.py @@ -9,6 +9,6 @@ from django.core.asgi import get_asgi_application from mizan import wrap_asgi # Register server functions and channels before building the ASGI app -import testapp.mizan_clients # noqa: F401 +import testapp.clients # noqa: F401 application = wrap_asgi(get_asgi_application())