Skip to content

Commit

Permalink
Merge pull request #916 from drmingdrmer/pfwang80s/main
Browse files Browse the repository at this point in the history
Fixup: typo in purge_logs_upto() comment
  • Loading branch information
drmingdrmer committed Oct 26, 2023
2 parents d8e0417 + 7c5bc84 commit 0f39431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/raft-kv-memstore/src/store/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ impl RaftStorage<TypeConfig> for Arc<Store> {

#[tracing::instrument(level = "debug", skip(self))]
async fn purge_logs_upto(&mut self, log_id: LogId<NodeId>) -> Result<(), StorageError<NodeId>> {
tracing::debug!("delete_log: [{:?}, +oo)", log_id);
tracing::debug!("delete_log: (-oo, {:?}]", log_id);

{
let mut ld = self.last_purged_log_id.write().await;
Expand Down

0 comments on commit 0f39431

Please sign in to comment.