We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e229321 commit 9de46b3Copy full SHA for 9de46b3
1 file changed
eval_protocol/adapters/fireworks_tracing.py
@@ -371,9 +371,7 @@ def get_evaluation_rows(
371
error_msg = error_detail or e.response.text
372
373
# Retry on 404 if it's due to incomplete/missing traces (backend still indexing)
374
- if e.response.status_code == 404 and (
375
- "Incomplete traces" in error_detail or "No traces found" in error_detail
376
- ):
+ if e.response.status_code == 404:
377
should_retry = True
378
except Exception:
379
error_msg = e.response.text
0 commit comments