chore(deps): upgrade to hyper 1.x #1184
pr.yml
on: pull_request
Annotations
41 errors
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L4
error[E0432]: unresolved import `hyper::client::connect`
--> linkerd/http/upgrade/src/glue.rs:4:5
|
4 | use hyper::client::connect as hyper_connect;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `connect` in `client`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L4
error[E0432]: unresolved import `hyper::client::connect`
--> linkerd/http/upgrade/src/glue.rs:4:5
|
4 | use hyper::client::connect as hyper_connect;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `connect` in `client`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L66
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/upgrade/src/glue.rs:66:5
|
66 | / fn poll_data(
67 | | self: Pin<&mut Self>,
68 | | cx: &mut Context<'_>,
69 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
80 | | Poll::Ready(data)
81 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L66
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/upgrade/src/glue.rs:66:5
|
66 | / fn poll_data(
67 | | self: Pin<&mut Self>,
68 | | cx: &mut Context<'_>,
69 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
80 | | Poll::Ready(data)
81 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L83
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/upgrade/src/glue.rs:83:5
|
83 | / fn poll_trailers(
84 | | self: Pin<&mut Self>,
85 | | cx: &mut Context<'_>,
86 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
97 | | Poll::Ready(trailers)
98 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L83
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/upgrade/src/glue.rs:83:5
|
83 | / fn poll_trailers(
84 | | self: Pin<&mut Self>,
85 | | cx: &mut Context<'_>,
86 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
97 | | Poll::Ready(trailers)
98 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L54
error[E0046]: not all trait items implemented, missing: `poll_frame`
--> linkerd/http/upgrade/src/glue.rs:54:1
|
54 | / impl<B> Body for UpgradeBody<B>
55 | | where
56 | | B: Body,
57 | | B::Error: std::fmt::Display,
| |________________________________^ missing `poll_frame` in implementation
|
= help: implement the missing item: `fn poll_frame(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Result<Frame<<Self as Body>::Data>, <Self as Body>::Error>>> { todo!() }`
|
rust-crates (linkerd-http-upgrade):
linkerd/http/upgrade/src/glue.rs#L54
error[E0046]: not all trait items implemented, missing: `poll_frame`
--> linkerd/http/upgrade/src/glue.rs:54:1
|
54 | / impl<B> Body for UpgradeBody<B>
55 | | where
56 | | B: Body,
57 | | B::Error: std::fmt::Display,
| |________________________________^ missing `poll_frame` in implementation
|
= help: implement the missing item: `fn poll_frame(self: Pin<&mut Self>, _: &mut Context<'_>) -> Poll<Option<Result<Frame<<Self as Body>::Data>, <Self as Body>::Error>>> { todo!() }`
|
rust-crates (linkerd-http-upgrade)
Process completed with exit code 1.
|
rust-crates (linkerd-http-metrics)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-http-metrics):
linkerd/metrics/src/serve.rs#L44
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:44:43
|
44 | .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
44 - .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
44 + .body(BoxBody::new(Body::from(writer.finish()?)))
|
|
rust-crates (linkerd-http-metrics):
linkerd/metrics/src/serve.rs#L51
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:51:43
|
51 | .body(BoxBody::new(hyper::Body::from(writer)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
51 - .body(BoxBody::new(hyper::Body::from(writer)))
51 + .body(BoxBody::new(Body::from(writer)))
|
|
rust-crates (linkerd-http-metrics)
Process completed with exit code 1.
|
rust-crates (linkerd-http-retry)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-http-retry):
linkerd/metrics/src/serve.rs#L44
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:44:43
|
44 | .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
44 - .body(BoxBody::new(hyper::Body::from(writer.finish()?)))
44 + .body(BoxBody::new(Body::from(writer.finish()?)))
|
|
rust-crates (linkerd-http-retry):
linkerd/metrics/src/serve.rs#L51
error[E0433]: failed to resolve: could not find `Body` in `hyper`
--> linkerd/metrics/src/serve.rs:51:43
|
51 | .body(BoxBody::new(hyper::Body::from(writer)))
| ^^^^ could not find `Body` in `hyper`
|
help: consider importing one of these traits
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
51 - .body(BoxBody::new(hyper::Body::from(writer)))
51 + .body(BoxBody::new(Body::from(writer)))
|
|
rust-crates (linkerd-http-retry)
Process completed with exit code 1.
|
rust-crates (hyper-balance)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (hyper-balance)
The operation was canceled.
|
rust-crates (linkerd-app-core)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-core)
The operation was canceled.
|
rust-crates (linkerd-http-executor)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-http-executor)
The operation was canceled.
|
rust-crates (linkerd-app-admin)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-admin)
The operation was canceled.
|
rust-crates (linkerd-app-outbound)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-outbound)
The operation was canceled.
|
rust-crates (linkerd-app-inbound)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-inbound)
The operation was canceled.
|
rust-crates (linkerd-proxy-tap)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-proxy-tap)
The operation was canceled.
|
rust-crates (linkerd-metrics)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-metrics)
The operation was canceled.
|
rust-crates (linkerd-app-integration)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-integration)
The operation was canceled.
|
rust-crates (linkerd-proxy-http)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-proxy-http)
The operation was canceled.
|
rust-crates (linkerd-app-test)
The job was canceled because "linkerd-http-upgrade" failed.
|
rust-crates (linkerd-app-test)
The operation was canceled.
|
linkerd-install
Process completed with exit code 1.
|
ship-it
Process completed with exit code 1.
|