Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies: prost to 0.8 and tonic to 0.5 #818

Merged
merged 1 commit into from
Aug 2, 2021

Conversation

alamb
Copy link
Contributor

@alamb alamb commented Aug 2, 2021

Which issue does this PR close?

Closes #817

Rationale for this change

Examples are failing as they use an incompatible version of tonic/prost that came in with arrow 5.1.0 (apache/arrow-rs#560) which leads to failures on CI PRs such as https://github.com/apache/arrow-datafusion/pull/808/checks?check_run_id=3223418729

What changes are included in this PR?

Update dependencies: prost to 0.8 and tonic to 0.5

Are there any user-facing changes?

New version of dependent libraries

@github-actions github-actions bot added ballista datafusion Changes in the datafusion crate labels Aug 2, 2021
@@ -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() {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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

@alamb
Copy link
Contributor Author

alamb commented Aug 2, 2021

I am merging this one in to get CI back to green. Please let me know if there are any additional concerns which I will be happy to address

@alamb alamb merged commit e18d79f into apache:master Aug 2, 2021
@alamb alamb deleted the alamb/fix_examples branch August 2, 2021 19:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
datafusion Changes in the datafusion crate
Projects
None yet
Development

Successfully merging this pull request may close these issues.

datafusion-examples crate fails after upgrade to arrow 5.1.0
2 participants