Skip to content

Fix rcv-settle-mode for sender links (#60) #446

Fix rcv-settle-mode for sender links (#60)

Fix rcv-settle-mode for sender links (#60) #446

Triggered via push January 2, 2025 15:23
Status Success
Total duration 5m 53s
Artifacts

linux.yml

on: push
Matrix: build_and_test
Fit to window
Zoom out
Zoom in

Annotations

8 errors and 29 warnings
1.75.0 - x86_64-unknown-linux-gnu
no such command: `tarpaulin`
1.75.0 - x86_64-unknown-linux-gnu
Process completed with exit code 101.
1.75.0 - x86_64-unknown-linux-gnu
failed to compile `cargo-tarpaulin v0.31.4`, intermediate artifacts can be found at `/tmp/cargo-installM4H0sR`.
1.75.0 - x86_64-unknown-linux-gnu
Process completed with exit code 101.
1.75.0 - x86_64-unknown-linux-gnu
Codecov: Failed to properly upload report: The process '/home/runner/work/_actions/codecov/codecov-action/v4/dist/codecov' failed with exit code 1
1.75.0 - x86_64-unknown-linux-gnu
Process completed with exit code 127.
1.75.0 - x86_64-unknown-linux-gnu
failed to compile `cargo-cache v0.8.3`, intermediate artifacts can be found at `/tmp/cargo-installNgQ727`.
1.75.0 - x86_64-unknown-linux-gnu
Process completed with exit code 101.
1.75.0 - x86_64-unknown-linux-gnu
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
nightly - x86_64-unknown-linux-gnu
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
stable - x86_64-unknown-linux-gnu
Your workflow is using a version of actions/cache that is scheduled for deprecation, actions/cache@v1. Please update your workflow to use either v3 or v4 of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-12-05-notice-of-upcoming-releases-and-breaking-changes-for-github-actions/#actions-cache-v1-v2-and-actions-toolkit-cache-package-closing-down
the following explicit lifetimes could be elided: 'f: src/dispatcher.rs#L394
warning: the following explicit lifetimes could be elided: 'f --> src/dispatcher.rs:394:6 | 394 | impl<'f, F, E> Future for ServiceResult<'f, F, E> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 394 - impl<'f, F, E> Future for ServiceResult<'f, F, E> 394 + impl<F, E> Future for ServiceResult<'_, F, E> |
useless conversion to the same type: `client::error::ConnectError`: src/client/connector.rs#L176
warning: useless conversion to the same type: `client::error::ConnectError` --> src/client/connector.rs:176:27 | 176 | Ok(res) => res.map_err(From::from), | ^^^^^^^^^^^^^^^^^^^^ help: consider removing | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
useless conversion to the same type: `client::error::ConnectError`: src/client/connector.rs#L145
warning: useless conversion to the same type: `client::error::ConnectError` --> src/client/connector.rs:145:27 | 145 | Ok(res) => res.map_err(From::from), | ^^^^^^^^^^^^^^^^^^^^ help: consider removing | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `#[warn(clippy::useless_conversion)]` on by default
this `if` statement can be collapsed: src/dispatcher.rs#L142
warning: this `if` statement can be collapsed --> src/dispatcher.rs:142:9 | 142 | / if self.idle_timeout.non_zero() { 143 | | if self.idle_sleep.poll_elapsed(cx).is_ready() { 144 | | log::trace!( 145 | | "{}: Send keep-alive ping, timeout: {:?} secs", ... | 152 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if = note: `#[warn(clippy::collapsible_if)]` on by default help: collapse nested if block | 142 ~ if self.idle_timeout.non_zero() && self.idle_sleep.poll_elapsed(cx).is_ready() { 143 + log::trace!( 144 + "{}: Send keep-alive ping, timeout: {:?} secs", 145 + self.sink.tag(), 146 + self.idle_timeout 147 + ); 148 + self.sink.post_frame(AmqpFrame::new(0, Frame::Empty)); 149 + self.idle_sleep.reset(self.idle_timeout); 150 + } |
the following explicit lifetimes could be elided: 'f: src/dispatcher.rs#L394
warning: the following explicit lifetimes could be elided: 'f --> src/dispatcher.rs:394:6 | 394 | impl<'f, F, E> Future for ServiceResult<'f, F, E> | ^^ ^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes = note: `#[warn(clippy::needless_lifetimes)]` on by default help: elide the lifetimes | 394 - impl<'f, F, E> Future for ServiceResult<'f, F, E> 394 + impl<F, E> Future for ServiceResult<'_, F, E> |
useless conversion to the same type: `client::error::ConnectError`: src/client/connector.rs#L176
warning: useless conversion to the same type: `client::error::ConnectError` --> src/client/connector.rs:176:27 | 176 | Ok(res) => res.map_err(From::from), | ^^^^^^^^^^^^^^^^^^^^ help: consider removing | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion
useless conversion to the same type: `client::error::ConnectError`: src/client/connector.rs#L145
warning: useless conversion to the same type: `client::error::ConnectError` --> src/client/connector.rs:145:27 | 145 | Ok(res) => res.map_err(From::from), | ^^^^^^^^^^^^^^^^^^^^ help: consider removing | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#useless_conversion = note: `#[warn(clippy::useless_conversion)]` on by default
this `if` statement can be collapsed: src/dispatcher.rs#L142
warning: this `if` statement can be collapsed --> src/dispatcher.rs:142:9 | 142 | / if self.idle_timeout.non_zero() { 143 | | if self.idle_sleep.poll_elapsed(cx).is_ready() { 144 | | log::trace!( 145 | | "{}: Send keep-alive ping, timeout: {:?} secs", ... | 152 | | } | |_________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#collapsible_if = note: `#[warn(clippy::collapsible_if)]` on by default help: collapse nested if block | 142 ~ if self.idle_timeout.non_zero() && self.idle_sleep.poll_elapsed(cx).is_ready() { 143 + log::trace!( 144 + "{}: Send keep-alive ping, timeout: {:?} secs", 145 + self.sink.tag(), 146 + self.idle_timeout 147 + ); 148 + self.sink.post_frame(AmqpFrame::new(0, Frame::Empty)); 149 + self.idle_sleep.reset(self.idle_timeout); 150 + } |
nightly - x86_64-unknown-linux-gnu
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
nightly - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
nightly - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
nightly - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
nightly - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
nightly - x86_64-unknown-linux-gnu
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
stable - x86_64-unknown-linux-gnu
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
stable - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
stable - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
stable - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
stable - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
stable - x86_64-unknown-linux-gnu
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1.75.0 - x86_64-unknown-linux-gnu
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
1.75.0 - x86_64-unknown-linux-gnu
The `save-state` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1.75.0 - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1.75.0 - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1.75.0 - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
1.75.0 - x86_64-unknown-linux-gnu
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/