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

feat!: support waiting from both standard streams #695

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

feat!: support waiting from both standard streams

7305971
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Draft

feat!: support waiting from both standard streams #695

feat!: support waiting from both standard streams
7305971
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy succeeded Jul 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.81.0-nightly (20ae37c18 2024-07-07)
  • cargo 1.81.0-nightly (154fdac39 2024-07-07)
  • clippy 0.1.81 (20ae37c 2024-07-07)

Annotations

Check warning on line 73 in testcontainers/src/core/image/image_ext.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

doc list item missing indentation

warning: doc list item missing indentation
  --> testcontainers/src/core/image/image_ext.rs:73:9
   |
73 |     /// If not specified, the daemon default is used, which can either be `\"private\"` or `\"host\"`, depending on daemon version, kerne...
   |         ^
   |
   = help: if this is supposed to be its own paragraph, add a blank line
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#doc_lazy_continuation
   = note: `#[warn(clippy::doc_lazy_continuation)]` on by default
help: indent this line
   |
73 |     ///   If not specified, the daemon default is used, which can either be `\"private\"` or `\"host\"`, depending on daemon version, kernel support and configuration.
   |         ++

Check warning on line 9 in testcontainers/src/core/wait/mod.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unused import: `logs::LogSource`

warning: unused import: `logs::LogSource`
 --> testcontainers/src/core/wait/mod.rs:9:28
  |
9 |     core::{client::Client, logs::LogSource},
  |                            ^^^^^^^^^^^^^^^
  |
  = note: `#[warn(unused_imports)]` on by default