DB Retries #117
Annotations
2 warnings
in a `match` scrutinee, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`:
xmtp_mls/src/client.rs#L493
warning: in a `match` scrutinee, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`
--> xmtp_mls/src/client.rs:493:28
|
493 | (async {
| ____________________________^
494 | | let welcome_v1 = welcome_v1.clone();
495 | | self.process_for_id(
496 | | &id,
... |
520 | | .await
521 | | })
| |_____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#blocks_in_conditions
= note: `#[warn(clippy::blocks_in_conditions)]` on by default
|
in a `match` scrutinee, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`:
xmtp_mls/src/client.rs#L493
warning: in a `match` scrutinee, avoid complex blocks or closures with blocks; instead, move the block or closure higher and bind it with a `let`
--> xmtp_mls/src/client.rs:493:28
|
493 | (async {
| ____________________________^
494 | | let welcome_v1 = welcome_v1.clone();
495 | | self.process_for_id(
496 | | &id,
... |
520 | | .await
521 | | })
| |_____________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#blocks_in_conditions
= note: `#[warn(clippy::blocks_in_conditions)]` on by default
|