Skip to content

Commit 21d7e16

Browse files
committed
[antithesis] lower checkpoint split limit for reachability assert
1 parent ea5cd48 commit 21d7e16

File tree

1 file changed

+7
-0
lines changed
  • crates/sui-protocol-config/src

1 file changed

+7
-0
lines changed

crates/sui-protocol-config/src/lib.rs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4550,6 +4550,12 @@ impl ProtocolConfig {
45504550
// in the quarantine output.
45514551
}
45524552

4553+
// Antithesis specific overrides.
4554+
#[cfg(not(msim))]
4555+
if mysten_common::in_antithesis() {
4556+
cfg.max_transactions_per_checkpoint = Some(100);
4557+
}
4558+
45534559
cfg
45544560
}
45554561

@@ -4864,6 +4870,7 @@ impl ProtocolConfig {
48644870
self.feature_flags.enable_authenticated_event_streams = true;
48654871
self.feature_flags
48664872
.include_checkpoint_artifacts_digest_in_summary = true;
4873+
self.feature_flags.split_checkpoints_in_consensus_handler = true;
48674874
}
48684875

48694876
pub fn disable_authenticated_event_streams_for_testing(&mut self) {

0 commit comments

Comments
 (0)