feat(cluster): add migration finalization (#2507)

* feat(cluster): add migration finalization
This commit is contained in:
Borys 2024-02-01 17:24:54 +02:00 committed by GitHub
parent adeac6bd27
commit 5189dae118
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 174 additions and 25 deletions

View file

@ -195,7 +195,7 @@ io::Result<journal::ParsedEntry> JournalReader::ReadEntry() {
entry.dbid = dbid_;
entry.opcode = opcode;
if (opcode == journal::Op::PING) {
if (opcode == journal::Op::PING || opcode == journal::Op::FIN) {
return entry;
}