Skip to content

Commit

Permalink
Revert "Make land-blocking large"
Browse files Browse the repository at this point in the history
This reverts commit 694c3a9.
  • Loading branch information
bchocho committed Mar 2, 2024
1 parent 694c3a9 commit 9457762
Showing 1 changed file with 2 additions and 11 deletions.
13 changes: 2 additions & 11 deletions testsuite/forge-cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ use aptos_forge::{
},
ForgeConfig, Options, *,
};
use aptos_global_constants::PREVIEWNET_EXECUTION_MULTIPLIER;
use aptos_logger::{info, Level};
use aptos_rest_client::Client as RestClient;
use aptos_sdk::{
Expand Down Expand Up @@ -603,7 +602,7 @@ fn get_land_blocking_test(
) -> Option<ForgeConfig> {
let test = match test_name {
"land_blocking" => land_blocking_test_suite(duration), // TODO: remove land_blocking, superseded by below
"realistic_env_max_load" => realistic_env_max_load_test(duration, test_cmd, 100, 10),
"realistic_env_max_load" => realistic_env_max_load_test(duration, test_cmd, 7, 5),
"compat" => compat(),
"framework_upgrade" => framework_upgrade(),
_ => return None, // The test name does not match a land-blocking test
Expand Down Expand Up @@ -1771,18 +1770,10 @@ fn realistic_env_max_load_test(
ForgeConfig::default()
.with_initial_validator_count(NonZeroUsize::new(num_validators).unwrap())
.with_initial_fullnode_count(num_fullnodes)
.with_validator_resource_override(NodeResourceOverride {
cpu_cores: Some(58),
memory_gib: Some(200),
})
.with_fullnode_resource_override(NodeResourceOverride {
cpu_cores: Some(58),
memory_gib: Some(200),
})
.add_network_test(wrap_with_realistic_env(TwoTrafficsTest {
inner_traffic: EmitJobRequest::default()
.mode(EmitJobMode::MaxLoad {
mempool_backlog: 14_000 * PREVIEWNET_EXECUTION_MULTIPLIER * 6,
mempool_backlog: 40000,
})
.init_gas_price_multiplier(20),
inner_success_criteria: SuccessCriteria::new(
Expand Down

0 comments on commit 9457762

Please sign in to comment.