mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 23:24:24 +00:00
63 lines
2 KiB
Text
63 lines
2 KiB
Text
error: this MutexGuard is held across an 'await' point. Consider using an async-aware Mutex type or ensuring the MutexGuard is dropped before calling await
|
|
--> $DIR/await_holding_lock.rs:7:9
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
= note: `-D clippy::await-holding-lock` implied by `-D warnings`
|
|
note: these are all the await points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:7:5
|
|
|
|
|
LL | / let guard = x.lock().unwrap();
|
|
LL | | baz().await
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: this MutexGuard is held across an 'await' point. Consider using an async-aware Mutex type or ensuring the MutexGuard is dropped before calling await
|
|
--> $DIR/await_holding_lock.rs:28:9
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
note: these are all the await points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:28:5
|
|
|
|
|
LL | / let guard = x.lock().unwrap();
|
|
LL | |
|
|
LL | | let second = baz().await;
|
|
LL | |
|
|
... |
|
|
LL | | first + second + third
|
|
LL | | }
|
|
| |_^
|
|
|
|
error: this MutexGuard is held across an 'await' point. Consider using an async-aware Mutex type or ensuring the MutexGuard is dropped before calling await
|
|
--> $DIR/await_holding_lock.rs:41:13
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
note: these are all the await points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:41:9
|
|
|
|
|
LL | / let guard = x.lock().unwrap();
|
|
LL | | baz().await
|
|
LL | | };
|
|
| |_____^
|
|
|
|
error: this MutexGuard is held across an 'await' point. Consider using an async-aware Mutex type or ensuring the MutexGuard is dropped before calling await
|
|
--> $DIR/await_holding_lock.rs:53:13
|
|
|
|
|
LL | let guard = x.lock().unwrap();
|
|
| ^^^^^
|
|
|
|
|
note: these are all the await points this lock is held through
|
|
--> $DIR/await_holding_lock.rs:53:9
|
|
|
|
|
LL | / let guard = x.lock().unwrap();
|
|
LL | | baz().await
|
|
LL | | }
|
|
| |_____^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|