From 9009c29d539162d237d1e896cbb53055f6ac4234 Mon Sep 17 00:00:00 2001 From: Romi Date: Fri, 6 May 2022 16:42:44 +0800 Subject: [PATCH] Update RaftPart.cpp --- src/kvstore/raftex/RaftPart.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kvstore/raftex/RaftPart.cpp b/src/kvstore/raftex/RaftPart.cpp index ecc0bc60265..0ab5d572601 100644 --- a/src/kvstore/raftex/RaftPart.cpp +++ b/src/kvstore/raftex/RaftPart.cpp @@ -1989,7 +1989,7 @@ void RaftPart::processSendSnapshotRequest(const cpp2::SendSnapshotRequest& req, DCHECK_EQ(wal_->lastLogId(), 0); status_ = Status::RUNNING; VLOG(1) << idStr_ << "Receive all snapshot, committedLogId_ " << committedLogId_ - << ", committedLogTerm_ " << committedLogTerm_ << ", lastLodId " << lastLogId_ + << ", committedLogTerm_ " << committedLogTerm_ << ", lastLogId " << lastLogId_ << ", lastLogTermId " << lastLogTerm_; } resp.error_code_ref() = nebula::cpp2::ErrorCode::SUCCEEDED;