diff --git a/coordinator/src/executors_handler.rs b/coordinator/src/executors_handler.rs index 1282e9598..28717b924 100644 --- a/coordinator/src/executors_handler.rs +++ b/coordinator/src/executors_handler.rs @@ -89,7 +89,8 @@ impl ExecutorsHandlerImpl { .client .clone() .stop_executor(Request::new(request.clone())) - .await?; + .await + .context(format!("Failed to stop executor: {executor_id}"))?; tracing::debug!(executor_id, "Stop executor response: {:#?}", response);