err response
Build and Deploy / build (push) Successful in 22s
Build and Deploy / deploy (push) Successful in 36s

This commit is contained in:
2026-05-26 21:18:57 +02:00
parent 12ef254424
commit 3288ab9de7
+2
View File
@@ -454,6 +454,8 @@ class MatchesWebApp:
return Response("build already running", status=409) return Response("build already running", status=409)
try: try:
result = self._mover.build_matches_only() result = self._mover.build_matches_only()
except Exception as exc:
return Response(f"build failed: {exc}", status=500)
finally: finally:
self._build_lock.release() self._build_lock.release()
return jsonify(result) return jsonify(result)