Skip to content

chore(deps): replace backoff with backon #3569

chore(deps): replace backoff with backon

chore(deps): replace backoff with backon #3569

Triggered via pull request November 29, 2024 11:40
Status Failure
Total duration 57s
Artifacts

clippy.yml

on: pull_request
clippy_nightly
48s
clippy_nightly
Fit to window
Zoom out
Zoom in

Annotations

2 errors
this bound is already specified as the supertrait of `Backoff`: kube-runtime/src/controller/mod.rs#L919
error: this bound is already specified as the supertrait of `Backoff` --> kube-runtime/src/controller/mod.rs:919:62 | 919 | pub fn trigger_backoff(mut self, backoff: impl Backoff + Send + 'static) -> Self { | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#implied_bounds_in_impls note: the lint level is defined here --> kube-runtime/src/lib.rs:11:9 | 11 | #![deny(clippy::all)] | ^^^^^^^^^^^ = note: `#[deny(clippy::implied_bounds_in_impls)]` implied by `#[deny(clippy::all)]` help: try removing this bound | 919 - pub fn trigger_backoff(mut self, backoff: impl Backoff + Send + 'static) -> Self { 919 + pub fn trigger_backoff(mut self, backoff: impl Backoff + 'static) -> Self { |
clippy_nightly
Clippy has exited with exit code 101