From e41aa3d983024aadbb5bb05db5640d97768b2c25 Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sun, 3 Aug 2025 03:41:26 +0800 Subject: [PATCH] fix: correct typo in BASE_RECONCILE_URL in site_settings.py Signed-off-by: zhenyus --- apps/devops/app/common/config/site_settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/devops/app/common/config/site_settings.py b/apps/devops/app/common/config/site_settings.py index c313636..0bf92eb 100644 --- a/apps/devops/app/common/config/site_settings.py +++ b/apps/devops/app/common/config/site_settings.py @@ -21,7 +21,7 @@ class SiteSettings(BaseSettings): BASE_GITEA_URL: str = "https://gitea.freeleaps.mathmast.com" # TODO: confirm with Zhenyu - BASE_RECONSILE_URL: str = "https://reconcile.freeleaps.mathmast.com" + BASE_RECONCILE_URL: str = "https://reconcile.freeleaps.mathmast.com" # TODO: modify this with actual Loki URL BASE_LOKI_URL: str = "http://localhost:3100"