Skip to content

Commit ba11503

Browse files
jsonbaileyclaude
andcommitted
fix: log warning when judge result tracking fails in ManagedModel
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent e56f69a commit ba11503

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ async def _run_and_track(eval_task: asyncio.Task) -> List[JudgeResult]:
7171
if r.success:
7272
try:
7373
tracker.track_judge_result(r)
74-
except Exception:
75-
pass
74+
except Exception as exc:
75+
log.warning("Failed to track judge result: %s", exc)
7676
else:
7777
log.warning("Judge evaluation failed: %s", r.error_message)
7878
return results

0 commit comments

Comments
 (0)