Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion verify.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,9 @@ async def _handle_stream_request(self, request: dict) -> tuple[str, dict]:
return "success", response
except Exception as e:
logger.error(f"Stream request failed: {e}")
return "failed", {"error": str(e)}
# Re-raise so send_request's retry loop can see the failure. Returning
# here would exit the loop after a single attempt.
raise

async def process_request(self, prepared_req: dict, data_index: int) -> dict:
"""Process a single request and run all validators."""
Expand Down