This check has been archived and is scheduled for deletion.
Learn more about checks retention
GitHub Actions / clippy
failed
Aug 30, 2023 in 0s
clippy
1 error
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 1 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.71.1 (eb26296b5 2023-08-03)
- cargo 1.71.1 (7f1d04c00 2023-07-29)
- clippy 0.1.71 (eb26296 2023-08-03)
Annotations
Check failure on line 348 in bmcd/src/legacy.rs
github-actions / clippy
this `RefCell` reference is held across an `await` point
error: this `RefCell` reference is held across an `await` point
--> bmcd/src/legacy.rs:347:17
|
347 | / request
348 | | .connection_info()
| |______________________________________^
|
= help: ensure the reference is dropped before calling `await`
note: these are all the `await` points this reference is held through
--> bmcd/src/legacy.rs:345:9
|
345 | / (*flash_service)
346 | | .stream_chunk(
347 | | request
348 | | .connection_info()
... |
352 | | )
353 | | .await?;
| |____________________^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#await_holding_refcell_ref
= note: `-D clippy::await-holding-refcell-ref` implied by `-D warnings`
Loading