chore(deps): upgrade to hyper 1.x #1276
pr.yml
on: pull_request
Annotations
45 errors
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/orig_proto.rs#L214
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/proxy/http/src/orig_proto.rs:214:5
|
214 | / fn poll_data(
215 | | self: Pin<&mut Self>,
216 | | cx: &mut Context<'_>,
217 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
221 | | .map_err(downgrade_h2_error)
222 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/orig_proto.rs#L224
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/proxy/http/src/orig_proto.rs:224:5
|
224 | / fn poll_trailers(
225 | | self: Pin<&mut Self>,
226 | | cx: &mut Context<'_>,
227 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
231 | | .map_err(downgrade_h2_error)
232 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h1.rs#L36
error[E0412]: cannot find type `Client` in crate `hyper`
--> linkerd/proxy/http/src/h1.rs:36:34
|
36 | absolute_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
| ^^^^^^ not found in `hyper`
|
help: consider importing this enum
|
1 + use crate::client::Client;
|
help: if you import `Client`, refer to it directly
|
36 - absolute_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
36 + absolute_form: Option<Client<HyperConnect<C, T>, B>>,
|
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h1.rs#L37
error[E0412]: cannot find type `Client` in crate `hyper`
--> linkerd/proxy/http/src/h1.rs:37:32
|
37 | origin_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
| ^^^^^^ not found in `hyper`
|
help: consider importing this enum
|
1 + use crate::client::Client;
|
help: if you import `Client`, refer to it directly
|
37 - origin_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
37 + origin_form: Option<Client<HyperConnect<C, T>, B>>,
|
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h1.rs#L97
error[E0433]: failed to resolve: could not find `Client` in `hyper`
--> linkerd/proxy/http/src/h1.rs:97:20
|
97 | hyper::Client::builder()
| ^^^^^^ could not find `Client` in `hyper`
|
help: consider importing one of these items
|
1 + use crate::client::Client;
|
1 + use crate::h1::Client;
|
help: if you import `Client`, refer to it directly
|
97 - hyper::Client::builder()
97 + Client::builder()
|
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h1.rs#L123
error[E0433]: failed to resolve: could not find `Client` in `hyper`
--> linkerd/proxy/http/src/h1.rs:123:28
|
123 | hyper::Client::builder()
| ^^^^^^ could not find `Client` in `hyper`
|
help: consider importing one of these items
|
1 + use crate::client::Client;
|
1 + use crate::h1::Client;
|
help: if you import `Client`, refer to it directly
|
123 - hyper::Client::builder()
123 + Client::builder()
|
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h2.rs#L150
error[E0412]: cannot find type `Body` in crate `hyper`
--> linkerd/proxy/http/src/h2.rs:150:43
|
150 | type Response = http::Response<hyper::Body>;
| ^^^^ not found in `hyper`
|
help: consider importing one of these items
|
1 + use crate::Body;
|
1 + use crate::balance::Body;
|
1 + use http_body::Body;
|
1 + use hyper::body::Body;
|
help: if you import `Body`, refer to it directly
|
150 - type Response = http::Response<hyper::Body>;
150 + type Response = http::Response<Body>;
|
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/orig_proto.rs#L214
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/proxy/http/src/orig_proto.rs:214:5
|
214 | / fn poll_data(
215 | | self: Pin<&mut Self>,
216 | | cx: &mut Context<'_>,
217 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
221 | | .map_err(downgrade_h2_error)
222 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/orig_proto.rs#L224
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/proxy/http/src/orig_proto.rs:224:5
|
224 | / fn poll_trailers(
225 | | self: Pin<&mut Self>,
226 | | cx: &mut Context<'_>,
227 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
231 | | .map_err(downgrade_h2_error)
232 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-proxy-http):
linkerd/proxy/http/src/h1.rs#L36
error[E0412]: cannot find type `Client` in crate `hyper`
--> linkerd/proxy/http/src/h1.rs:36:34
|
36 | absolute_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
| ^^^^^^ not found in `hyper`
|
help: consider importing this enum
|
1 + use crate::client::Client;
|
help: if you import `Client`, refer to it directly
|
36 - absolute_form: Option<hyper::Client<HyperConnect<C, T>, B>>,
36 + absolute_form: Option<Client<HyperConnect<C, T>, B>>,
|
|
rust-crates (linkerd-http-retry)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L247
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:247:5
|
247 | / fn poll_data(
248 | | self: Pin<&mut Self>,
249 | | cx: &mut Context<'_>,
250 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
267 | | }
268 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L270
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:270:5
|
270 | / fn poll_trailers(
271 | | self: Pin<&mut Self>,
272 | | cx: &mut Context<'_>,
273 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
280 | | }
281 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L163
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/retry/src/replay.rs:163:5
|
163 | / fn poll_data(
164 | | self: Pin<&mut Self>,
165 | | cx: &mut Context<'_>,
166 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
248 | | Poll::Ready(Some(Ok(Data::Initial(chunk))))
249 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L251
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/retry/src/replay.rs:251:5
|
251 | / fn poll_trailers(
252 | | self: Pin<&mut Self>,
253 | | cx: &mut Context<'_>,
254 | | ) -> Poll<Result<Option<HeaderMap>, Self::Error>> {
... |
283 | | Poll::Ready(Ok(None))
284 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L247
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:247:5
|
247 | / fn poll_data(
248 | | self: Pin<&mut Self>,
249 | | cx: &mut Context<'_>,
250 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
267 | | }
268 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L270
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:270:5
|
270 | / fn poll_trailers(
271 | | self: Pin<&mut Self>,
272 | | cx: &mut Context<'_>,
273 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
280 | | }
281 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L476
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:476:9
|
476 | / fn poll_data(
477 | | self: Pin<&mut Self>,
478 | | cx: &mut Context<'_>,
479 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
489 | | poll
490 | | }
| |_________^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/peek_trailers.rs#L492
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/retry/src/peek_trailers.rs:492:9
|
492 | / fn poll_trailers(
493 | | self: Pin<&mut Self>,
494 | | cx: &mut Context<'_>,
495 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> {
... |
515 | | poll
516 | | }
| |_________^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L163
error[E0407]: method `poll_data` is not a member of trait `Body`
--> linkerd/http/retry/src/replay.rs:163:5
|
163 | / fn poll_data(
164 | | self: Pin<&mut Self>,
165 | | cx: &mut Context<'_>,
166 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> {
... |
248 | | Poll::Ready(Some(Ok(Data::Initial(chunk))))
249 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-http-retry):
linkerd/http/retry/src/replay.rs#L251
error[E0407]: method `poll_trailers` is not a member of trait `Body`
--> linkerd/http/retry/src/replay.rs:251:5
|
251 | / fn poll_trailers(
252 | | self: Pin<&mut Self>,
253 | | cx: &mut Context<'_>,
254 | | ) -> Poll<Result<Option<HeaderMap>, Self::Error>> {
... |
283 | | Poll::Ready(Ok(None))
284 | | }
| |_____^ not a member of trait `Body`
|
rust-crates (linkerd-metrics)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-metrics)
The operation was canceled.
|
rust-crates (linkerd-http-upgrade)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-http-upgrade)
The operation was canceled.
|
rust-crates (hyper-balance)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (hyper-balance)
The operation was canceled.
|
rust-crates (linkerd-http-metrics)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-http-metrics)
The operation was canceled.
|
rust-crates (linkerd-app-test)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-test)
The operation was canceled.
|
rust-crates (linkerd-app-inbound)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-inbound)
The operation was canceled.
|
rust-crates (linkerd-app-core)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-core)
The operation was canceled.
|
rust-crates (linkerd-app-admin)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-admin)
The operation was canceled.
|
rust-crates (linkerd-app-integration)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-integration)
The operation was canceled.
|
rust-crates (linkerd-proxy-tap)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-proxy-tap)
The operation was canceled.
|
rust-crates (linkerd-app-outbound)
The job was canceled because "linkerd-proxy-http" failed.
|
rust-crates (linkerd-app-outbound)
The operation was canceled.
|
linkerd-install
Process completed with exit code 1.
|
ship-it
Process completed with exit code 1.
|