fix: ensure manifest timestamp is monotonically increasing#5899
fix: ensure manifest timestamp is monotonically increasing#5899jackye1995 wants to merge 1 commit intolance-format:mainfrom
Conversation
Code ReviewP1: Potential overflow in timestamp computation In match prev_timestamp_nanos {
Some(prev) => std::cmp::max(current_nanos, prev.saturating_add(MILLIS_TO_NANOS)),
None => current_nanos,
}Minor observations (non-blocking):
Overall, the change is well-structured with good test coverage and clear documentation. |
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
No description provided.