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 <zhenyus@mathmast.com>
This commit is contained in:
zhenyus 2025-08-03 03:51:15 +08:00
parent e41aa3d983
commit 5f3368cbdc

View File

@ -165,7 +165,7 @@ class DeploymentService:
async def _start_deployment( async def _start_deployment(
self, self,
deployment: Deployment, deployment: Deployment,
reconsile_base_url: str = site_settings.BASE_RECONSILE_URL, reconsile_base_url: str = site_settings.BASE_RECONCILE_URL,
) -> bool: ) -> bool:
""" """
Start the deployment Start the deployment