Skip to content

Commit

Permalink
fix cleanup_system_ticks
Browse files Browse the repository at this point in the history
  • Loading branch information
jonastar committed Oct 1, 2023
1 parent 5b13e47 commit 24c65f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ impl ServerTicks {
self.system_ticks.retain(|tick, _| {
self.acked_ticks
.values()
.all(|acked_tick| acked_tick > tick)
.any(|acked_tick| acked_tick <= tick)
})
}

Expand Down

0 comments on commit 24c65f4

Please sign in to comment.