Skip to content

feat(proxy-wasm) implement response body buffering #2330

feat(proxy-wasm) implement response body buffering

feat(proxy-wasm) implement response body buffering #2330

This check has been archived and is scheduled for deletion. Learn more about checks retention
GitHub Actions / clippy succeeded Aug 11, 2023 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.73.0-nightly (439d066bc 2023-08-10)
  • cargo 1.73.0-nightly (d78bbf4bd 2023-08-03)
  • clippy 0.1.73 (439d066 2023-08-10)

Annotations

Check warning on line 117 in t/lib/proxy-wasm-tests/on-phases/src/filter.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

redundant pattern matching, consider using `is_some()`

warning: redundant pattern matching, consider using `is_some()`
   --> t/lib/proxy-wasm-tests/on-phases/src/filter.rs:117:16
    |
117 |         if let Some(_) = self.config.get("log_response_body") {
    |         -------^^^^^^^--------------------------------------- help: try: `if self.config.get("log_response_body").is_some()`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_pattern_matching
    = note: `#[warn(clippy::redundant_pattern_matching)]` on by default