refactor(metadata): drop geoserver config refs

This commit is contained in:
2026-06-13 14:57:33 +08:00
parent 80ca985c28
commit 4c0a4b29e9
2 changed files with 10 additions and 15 deletions
+2 -2
View File
@@ -270,7 +270,7 @@ async def create_admin_project(
except IntegrityError as exc:
raise HTTPException(
status_code=status.HTTP_409_CONFLICT,
detail="Project code or GeoServer workspace conflicts with an existing project",
detail="Project code or workspace conflicts with an existing project",
) from exc
except SQLAlchemyError as exc:
raise HTTPException(
@@ -307,7 +307,7 @@ async def update_admin_project(
except IntegrityError as exc:
raise HTTPException(
status_code=status.HTTP_409_CONFLICT,
detail="Project code or GeoServer workspace conflicts with an existing project",
detail="Project code or workspace conflicts with an existing project",
) from exc
except SQLAlchemyError as exc:
raise HTTPException(