Skip to content

Commit 2f0fd53

Browse files
jsonbaileyclaude
andcommitted
fix: use consistent warning message for judge tracking failures
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent ba11503 commit 2f0fd53

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/sdk/server-ai/src/ldai/managed_model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ async def _run_and_track(eval_task: asyncio.Task) -> List[JudgeResult]:
7272
try:
7373
tracker.track_judge_result(r)
7474
except Exception as exc:
75-
log.warning("Failed to track judge result: %s", exc)
75+
log.warning("Judge evaluation failed: %s", exc)
7676
else:
7777
log.warning("Judge evaluation failed: %s", r.error_message)
7878
return results

0 commit comments

Comments
 (0)