From 11b94036ff881fb03d3c285a2013c594707d624d Mon Sep 17 00:00:00 2001 From: James Smith Date: Fri, 3 Jul 2026 08:32:49 +0100 Subject: [PATCH] fix: return 503 (not 502) when signal DB match fails --- routes/signalid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/signalid.py b/routes/signalid.py index e5f1f5e..d63670b 100644 --- a/routes/signalid.py +++ b/routes/signalid.py @@ -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,