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 29c3f9bdaf
commit a336da80fb
+1 -1
View File
@@ -414,7 +414,7 @@ def signalid_match() -> Response:
) )
except Exception as exc: except Exception as exc:
logger.error('Signal match failed: %s', exc) logger.error('Signal match failed: %s', exc)
return api_error('Signal match failed', 502) return api_error('Signal match failed', 503)
response_data = { response_data = {
'matches': matches, 'matches': matches,