Skip to content

Commit

Permalink
save skipped eventid
Browse files Browse the repository at this point in the history
  • Loading branch information
kb1ns committed Dec 14, 2023
1 parent d0103f7 commit b434aef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.7.0-rc.12
# v0.7.0-rc.13

- online test of migration

Expand Down
2 changes: 1 addition & 1 deletion engine/src/input/sequencer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ pub fn init(
if current_id % C.sequence.checkpoint == 0 {
to_executor.send(Event::Dump(current_id))?;
}
current_id += 1;
} else {
to_executor.send(event)?;
}
current_id += 1;
} else {
to_server.send((session, Message::new_req(req_id, vec![])))?;
}
Expand Down

0 comments on commit b434aef

Please sign in to comment.