-
Notifications
You must be signed in to change notification settings - Fork 4k
ARROW-16729: [C++] Bump Abseil/gRPC dependency versions #13315
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -157,8 +157,11 @@ struct FlightServerBase::Impl { | |
| void DoHandleSignal(int signum) { | ||
| got_signal_ = signum; | ||
| int saved_errno = errno; | ||
| // Ignore errors - pipe is nonblocking | ||
| PIPE_WRITE(self_pipe_wfd_, "0", 1); | ||
| if (PIPE_WRITE(self_pipe_wfd_, "0", 1) < 0) { | ||
| // Can't do much here, though, pipe is nonblocking so hopefully this doesn't happen | ||
| ARROW_LOG(WARNING) << "FlightServerBase: failed to handle signal " << signum | ||
| << " errno: " << errno; | ||
| } | ||
|
||
| errno = saved_errno; | ||
| } | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, do we not want to support any intermediate versions between 1.36 and 1.43, or 1.43 and 1.46?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens is that if we use system gRPC, we compile the test program and then assign a version of "1.43" regardless of the actual version; if we use bundled gRPC, we derive the version number from versions.txt. So a system gRPC 1.45 would still get reported as "1.43", but since we bumped the bundled version, we need to explicitly handle it here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, sorry, I had misunderstood.