We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a20f65e commit 8606303Copy full SHA for 8606303
modules/drdd_state/src/rest.rs
@@ -30,10 +30,7 @@ pub async fn handle_drdd(
30
Some(epoch) => match locked.get_epoch(epoch) {
31
Some(drdd) => Some(drdd),
32
None => {
33
- return Err(RESTError::not_found(&format!(
34
- "DRDD in epoch {}",
35
- epoch
36
- )));
+ return Err(RESTError::not_found(&format!("DRDD in epoch {}", epoch)));
37
}
38
},
39
None => locked.get_latest(),
0 commit comments