alamb commented on a change in pull request #818:
URL: https://github.com/apache/arrow-datafusion/pull/818#discussion_r681192076
##########
File path: ballista/rust/executor/src/flight_service.rs
##########
@@ -218,8 +218,8 @@ where
let batch_flight_data: Vec<_> = batch
.map(|b| create_flight_iter(&b, &options).collect())
.map_err(|e| from_arrow_err(&e))?;
- for batch in &batch_flight_data {
- send_response(&tx, batch.clone()).await?;
+ for batch in batch_flight_data.into_iter() {
Review comment:
I don't know why but this was causing a compiler error for me, so I
fixed it to get the tests to all pass cleanly on my machine
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]