File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
eval_protocol/mcp/execution Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -470,12 +470,12 @@ async def _execute_rollout(
470470 f"🚨 Error in rollout { session .dataset_row .id } { rollout_idx } : { failure_reason } " , exc_info = True
471471 )
472472 except (anyio .ClosedResourceError , anyio .BrokenResourceError ):
473+ failure_reason = "anyioconnection/resource error"
473474 logger .error (
474475 f"🚨 Error in rollout { session .dataset_row .id } { rollout_idx } : { failure_reason } " , exc_info = True
475476 )
476- failure_reason = "connection/resource error"
477477 except Exception as e :
478- error_msg = str (e ) if str (e ) else f"{ type (e ).__name__ } : Connection/resource error"
478+ error_msg = str (e ) if str (e ) else f"{ type (e ).__name__ } : Unexpected error"
479479 logger .error (f"🚨 Error in rollout { session .dataset_row .id } { rollout_idx } : { error_msg } " , exc_info = True )
480480 failure_reason = error_msg
481481 finally :
You can’t perform that action at this time.
0 commit comments