From 5f3368cbdcf26b2a4a1588359915e534bbc4e40e Mon Sep 17 00:00:00 2001 From: zhenyus Date: Sun, 3 Aug 2025 03:51:15 +0800 Subject: [PATCH] fix: correct typo in BASE_RECONCILE_URL parameter in DeploymentService Updated the parameter name in the _start_deployment method to match the corrected constant in site_settings.py, ensuring consistency across the codebase. Signed-off-by: zhenyus --- apps/devops/app/routes/deployment/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/devops/app/routes/deployment/service.py b/apps/devops/app/routes/deployment/service.py index 8c2f258..142ab3b 100644 --- a/apps/devops/app/routes/deployment/service.py +++ b/apps/devops/app/routes/deployment/service.py @@ -165,7 +165,7 @@ class DeploymentService: async def _start_deployment( self, deployment: Deployment, - reconsile_base_url: str = site_settings.BASE_RECONSILE_URL, + reconsile_base_url: str = site_settings.BASE_RECONCILE_URL, ) -> bool: """ Start the deployment