Skip to content

Commit

Permalink
ordered clean is not partial when max_lt reached
Browse files Browse the repository at this point in the history
  • Loading branch information
SmaGMan committed Dec 31, 2023
1 parent a41fbb6 commit 2f8e6d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/validator/out_msg_queue_cleaner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,8 @@ where
cursor_creation_elapsed,
);

let partial = filter_cursor.stop_processing | filter_cursor.cancel_processing;
let partial = (filter_cursor.stop_processing | filter_cursor.cancel_processing)
&& !filter_cursor.stopped_by_max_lt;

Ok(partial)
}

0 comments on commit 2f8e6d4

Please sign in to comment.