Skip to content

Commit 9de46b3

Browse files
committed
hotfix
1 parent e229321 commit 9de46b3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

eval_protocol/adapters/fireworks_tracing.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,9 +371,7 @@ def get_evaluation_rows(
371371
error_msg = error_detail or e.response.text
372372

373373
# 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-
):
374+
if e.response.status_code == 404:
377375
should_retry = True
378376
except Exception:
379377
error_msg = e.response.text

0 commit comments

Comments
 (0)