Merge pull request 'fix timestamps wrapping around in `garage block list-errors` (fix #584)' (#585) from fix-future-timestamps into main
continuous-integration/drone/push Build is passing Details

Reviewed-on: #585
This commit is contained in:
Alex 2023-06-13 12:51:16 +00:00
commit fc29548933
1 changed files with 6 additions and 1 deletions

View File

@ -373,13 +373,18 @@ pub fn print_block_error_list(el: Vec<BlockResyncErrorInfo>) {
let mut table = vec!["Hash\tRC\tErrors\tLast error\tNext try".into()];
for e in el {
let next_try = if e.next_try > now {
tf2.convert(Duration::from_millis(e.next_try - now))
} else {
"asap".to_string()
};
table.push(format!(
"{}\t{}\t{}\t{}\tin {}",
hex::encode(e.hash.as_slice()),
e.refcount,
e.error_count,
tf.convert(Duration::from_millis(now - e.last_try)),
tf2.convert(Duration::from_millis(e.next_try - now))
next_try
));
}
format_table(table);