Use updated Service trait (#59) #442
Annotations
7 errors and 27 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.3`, intermediate artifacts can be found at `/tmp/cargo-install9eCGJU`.
|
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
binary `cargo-cache` already exists in destination
|
1.75.0 - x86_64-unknown-linux-gnu
Process completed with exit code 101.
|
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>
|
|
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",
... |
151 | | }
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 + }
|
|
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 the latest version of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/
|
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 the latest version of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/
|
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 the latest version of actions/cache to avoid interruptions. Learn more: https://github.blog/changelog/2024-09-16-notice-of-upcoming-deprecations-and-changes-in-github-actions-services/
|
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>
|
|
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",
... |
151 | | }
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 + }
|
|
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 `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/
|
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/
|
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/
|