Skip to content

feat: Job stream now yield as much job as the concurrency option defines

Sign in for the full log view
GitHub Actions / clippy succeeded May 29, 2024 in 0s

clippy

1 warning

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 1
Note 0
Help 0

Versions

  • rustc 1.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check warning on line 61 in src/streams.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

using `clone` on type `StreamSource` which implements the `Copy` trait

warning: using `clone` on type `StreamSource` which implements the `Copy` trait
  --> src/streams.rs:61:26
   |
61 |             let source = source.clone();
   |                          ^^^^^^^^^^^^^^ help: try removing the `clone` call: `source`
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#clone_on_copy
   = note: `#[warn(clippy::clone_on_copy)]` on by default