Skip to content

Commit

Permalink
fix assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
hzxa21 committed Feb 26, 2024
1 parent bf1f233 commit 8972b85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl<LS: LocalStateStore> LogWriter for KvLogStoreWriter<LS> {
if self.is_paused {
assert_eq!(flush_info.flush_count, 0);
assert_eq!(flush_info.flush_size, 0);
assert!(self.state_store.is_dirty());
assert!(!self.state_store.is_dirty());
}
flush_info.report(&self.metrics);

Expand Down

0 comments on commit 8972b85

Please sign in to comment.