diff --git a/ballista/executor/src/flight_service.rs b/ballista/executor/src/flight_service.rs index 939b5a8f5..26ec814e7 100644 --- a/ballista/executor/src/flight_service.rs +++ b/ballista/executor/src/flight_service.rs @@ -234,9 +234,9 @@ where if let SendError(Err(err)) = err { err } else { - FlightError::Tonic(Status::internal( - "Can't send a batch, something went wrong", - )) + FlightError::Tonic(Status::internal(format!( + "Can't send a batch, something went wrong: {err:?}" + ))) } })? }