-
Notifications
You must be signed in to change notification settings - Fork 258
Fix CI failures #642
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
Fix CI failures #642
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 |
|---|---|---|
|
|
@@ -10,4 +10,3 @@ mod bindings { | |
| mod grpc_wrap; | ||
|
|
||
| pub use bindings::*; | ||
| pub use grpc_wrap::*; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,6 @@ mod protobuf_v3 { | |
| #[cfg(feature = "protobuf-codec")] | ||
| mod reexports { | ||
| pub use super::protobuf::health::*; | ||
| pub use super::protobuf::health_grpc::*; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Again, it causes an "unused import" warning which fails CI. In this case it is because |
||
| } | ||
| #[cfg(feature = "protobufv3-codec")] | ||
| mod reexports { | ||
|
|
||
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.
Why delete this?
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.
It generates an "unused import" warning building with the nightly toolchain, which fails CI. The
grpc_wrapmodule has no public members, so this use statement is actually a no-op. (grpc_wrapdoes add implementations to other types, but they don't need importing as they aren't part of its namespace.)