From 4c2eb31a6ac5160588f0843aa11d5abafba1b989 Mon Sep 17 00:00:00 2001 From: lebaudantoine Date: Tue, 20 May 2025 13:58:36 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F(backend)=20fix=20typo=20in?= =?UTF-8?q?=20FRONTEND=5FIS=5FSILENT=5FLOGIN=5FENABLED=20env=20var?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Correct spelling in environment variable name as identified by @K900. This is technically a breaking change for existing deployments using this setting, but acceptable as we haven't released an official version yet. Will personally notify known users of this setting about the change to minimize disruption. --- src/backend/meet/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/backend/meet/settings.py b/src/backend/meet/settings.py index a943c8c9..1b4ed9ce 100755 --- a/src/backend/meet/settings.py +++ b/src/backend/meet/settings.py @@ -314,7 +314,7 @@ class Base(Configuration): False, environ_name="FRONTEND_SILENCE_LIVEKIT_DEBUG", environ_prefix=None ), "is_silent_login_enabled": values.BooleanValue( - True, environ_name="FRONTEND_IS_SILENT_LOGING_ENABLED", environ_prefix=None + True, environ_name="FRONTEND_IS_SILENT_LOGIN_ENABLED", environ_prefix=None ), "feedback": values.DictValue( {}, environ_name="FRONTEND_FEEDBACK", environ_prefix=None