Skip to content

Commit

Permalink
review: remove redundant entries from the assert str
Browse files Browse the repository at this point in the history
  • Loading branch information
VladLazar committed Mar 5, 2024
1 parent c64161b commit a9e0d09
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pageserver/src/tenant/timeline.rs
Original file line number Diff line number Diff line change
Expand Up @@ -930,8 +930,8 @@ impl Timeline {
(Ok(seq_aux_dir), Ok(vec_aux_dir)) => {
assert_eq!(
seq_aux_dir, vec_aux_dir,
"Mismatch for key {} - keyspace={:?} lsn={}: {:?} != {:?}",
key, keyspace, lsn, seq_aux_dir, vec_aux_dir
"Mismatch for key {} - keyspace={:?} lsn={}",
key, keyspace, lsn
);
}
(Err(_), Err(_)) => {}
Expand Down

0 comments on commit a9e0d09

Please sign in to comment.