cargo fmt
This commit is contained in:
parent
b0a181e17e
commit
fc2bc8b0ca
1 changed files with 4 additions and 1 deletions
|
@ -269,7 +269,10 @@ impl Worker for ScrubWorker {
|
||||||
msec_to_rfc3339(self.persisted.time_last_complete_scrub)
|
msec_to_rfc3339(self.persisted.time_last_complete_scrub)
|
||||||
),
|
),
|
||||||
};
|
};
|
||||||
Some(format!("{} ; corruptions detected: {}", s, self.persisted.corruptions_detected))
|
Some(format!(
|
||||||
|
"{} ; corruptions detected: {}",
|
||||||
|
s, self.persisted.corruptions_detected
|
||||||
|
))
|
||||||
}
|
}
|
||||||
|
|
||||||
async fn work(
|
async fn work(
|
||||||
|
|
Loading…
Reference in a new issue