Skip to content

chore(deps): upgrade to hyper 1.x #1192

chore(deps): upgrade to hyper 1.x

chore(deps): upgrade to hyper 1.x #1192

Triggered via pull request January 8, 2025 04:38
Status Failure
Total duration 2m 34s
Artifacts

pr.yml

on: pull_request
Matrix: rust-crates
ship-it
1s
ship-it
Fit to window
Zoom out
Zoom in

Annotations

32 errors
rust-crates (linkerd-http-retry): linkerd/http/retry/src/peek_trailers.rs#L141
error[E0407]: method `poll_data` is not a member of trait `Body` --> linkerd/http/retry/src/peek_trailers.rs:141:5 | 141 | / fn poll_data( 142 | | self: Pin<&mut Self>, 143 | | cx: &mut Context<'_>, 144 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> { ... | 150 | | Pin::new(&mut this.inner).poll_data(cx) 151 | | } | |_____^ not a member of trait `Body`
rust-crates (linkerd-http-retry): linkerd/http/retry/src/peek_trailers.rs#L153
error[E0407]: method `poll_trailers` is not a member of trait `Body` --> linkerd/http/retry/src/peek_trailers.rs:153:5 | 153 | / fn poll_trailers( 154 | | self: Pin<&mut Self>, 155 | | cx: &mut Context<'_>, 156 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> { ... | 162 | | Pin::new(&mut this.inner).poll_trailers(cx) 163 | | } | |_____^ 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#L141
error[E0407]: method `poll_data` is not a member of trait `Body` --> linkerd/http/retry/src/peek_trailers.rs:141:5 | 141 | / fn poll_data( 142 | | self: Pin<&mut Self>, 143 | | cx: &mut Context<'_>, 144 | | ) -> Poll<Option<Result<Self::Data, Self::Error>>> { ... | 150 | | Pin::new(&mut this.inner).poll_data(cx) 151 | | } | |_____^ not a member of trait `Body`
rust-crates (linkerd-http-retry): linkerd/http/retry/src/peek_trailers.rs#L153
error[E0407]: method `poll_trailers` is not a member of trait `Body` --> linkerd/http/retry/src/peek_trailers.rs:153:5 | 153 | / fn poll_trailers( 154 | | self: Pin<&mut Self>, 155 | | cx: &mut Context<'_>, 156 | | ) -> Poll<Result<Option<http::HeaderMap>, Self::Error>> { ... | 162 | | Pin::new(&mut this.inner).poll_trailers(cx) 163 | | } | |_____^ 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/replay.rs#L773
error[E0433]: failed to resolve: could not find `Body` in `hyper` --> linkerd/http/retry/src/replay.rs:773:50 | 773 | let initial = ReplayBody::try_new(hyper::Body::empty(), 64 * 1024) | ^^^^ could not find `Body` in `hyper` | help: consider importing one of these traits | 502 + use crate::replay::Body; | 502 + use http_body::Body; | 502 + use hyper::body::Body; | help: if you import `Body`, refer to it directly | 773 - let initial = ReplayBody::try_new(hyper::Body::empty(), 64 * 1024) 773 + let initial = ReplayBody::try_new(Body::empty(), 64 * 1024) |
rust-crates (linkerd-http-retry): linkerd/http/retry/src/replay.rs#L788
error[E0433]: failed to resolve: could not find `Body` in `hyper` --> linkerd/http/retry/src/replay.rs:788:54 | 788 | let mut initial = ReplayBody::try_new(hyper::Body::from("hello world"), 64 * 1024) | ^^^^ could not find `Body` in `hyper` | help: consider importing one of these traits | 502 + use crate::replay::Body; | 502 + use http_body::Body; | 502 + use hyper::body::Body; | help: if you import `Body`, refer to it directly | 788 - let mut initial = ReplayBody::try_new(hyper::Body::from("hello world"), 64 * 1024) 788 + let mut initial = ReplayBody::try_new(Body::from("hello world"), 64 * 1024) |
rust-crates (linkerd-proxy-http)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-proxy-http)
The operation was canceled.
rust-crates (linkerd-proxy-tap)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-proxy-tap)
The operation was canceled.
rust-crates (linkerd-app-integration)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-integration)
The operation was canceled.
rust-crates (linkerd-app-outbound)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-outbound)
The operation was canceled.
rust-crates (linkerd-metrics)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-metrics)
The operation was canceled.
rust-crates (linkerd-app-admin)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-admin)
The operation was canceled.
rust-crates (linkerd-http-metrics)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-http-metrics)
The operation was canceled.
rust-crates (linkerd-app-test)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-test)
The operation was canceled.
rust-crates (linkerd-app-inbound)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-inbound)
The operation was canceled.
rust-crates (linkerd-app-core)
The job was canceled because "linkerd-http-retry" failed.
rust-crates (linkerd-app-core)
The operation was canceled.
linkerd-install
Process completed with exit code 1.
ship-it
Process completed with exit code 1.