@cryptotaxi247 / CoPilot / commits / 168f544e

`refactor: Update incident alert validation error message` (#317)

taylor_socfortress committed Oct 2, 2024 at 08:31 UTC 168f544ebc1467ef9d1be0aa7f001b2236e41b7d
1 file changed +1 -1
backend/app/incidents/services/incident_alert.py
+1 -1
@@ -307,7 +307,7 @@ async def validate_syslog_type_source(source: str, session: AsyncSession) -> boo
307 if source not in sources.sources:
308 raise HTTPException(
309 status_code=400,
310 - detail=f"Syslog type {source} is not configured in the system",
310 + detail=f"Incident Management: {source} Source must be configured",
311 )
312
313