fix: return 503 (not 502) when signal DB match fails

This commit is contained in:
James Smith
2026-07-03 08:32:49 +01:00
parent df66d1e445
commit 11b94036ff
+1 -1
View File
@@ -414,7 +414,7 @@ def signalid_match() -> Response:
)
except Exception as exc:
logger.error('Signal match failed: %s', exc)
return api_error('Signal match failed', 502)
return api_error('Signal match failed', 503)
response_data = {
'matches': matches,