Stabilise runtime predicates #1578
Merged
GitHub Actions / clippy
succeeded
Oct 8, 2024 in 0s
clippy
2 warnings
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 0 |
Warning | 2 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.83.0-nightly (3ae715c8c 2024-10-07)
- cargo 1.83.0-nightly (ad074abe3 2024-10-04)
- clippy 0.1.83 (3ae715c 2024-10-07)
Annotations
Check warning on line 46 in e2e/job.rs
github-actions / clippy
unneeded `return` statement
warning: unneeded `return` statement
--> e2e/job.rs:46:7
|
46 | Ok(())
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
46 | OkOk(())
| ~~~~~~
Check warning on line 12 in e2e/boot.rs
github-actions / clippy
unneeded `return` statement
warning: unneeded `return` statement
--> e2e/boot.rs:12:7
|
12 | Ok(())
| ^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
12 ~ Okfor p in pods.list(&Default::default()).await? {
13 + tracing::info!("Found pod {}", p.name_any());
14 + }
15 + Ok(())
|
Loading