Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stabilise runtime predicates #1578

Merged
merged 5 commits into from
Oct 9, 2024

Merge branch 'main' into predicate-stabilise

9cdf619
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Merged

Stabilise runtime predicates #1578

Merge branch 'main' into predicate-stabilise
9cdf619
Select commit
Loading
Failed to load commit list.
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

See this annotation in the file changed.

@github-actions 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

See this annotation in the file changed.

@github-actions 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(())
   |