Skip to content

Commit

Permalink
disable the new pipeline for forge (#15742)
Browse files Browse the repository at this point in the history
  • Loading branch information
msmouse authored Jan 17, 2025
1 parent f7cc847 commit 8c11da3
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions testsuite/forge/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ impl ForgeConfig {
let existing_db_tag = self.existing_db_tag.clone();
let validator_resource_override = self.validator_resource_override;
let fullnode_resource_override = self.fullnode_resource_override;
let suite_name = self.get_suite_name();

// Override specific helm values. See reference: terraform/helm/aptos-node/values.yaml
Some(Arc::new(move |helm_values: &mut serde_yaml::Value| {
Expand Down Expand Up @@ -239,21 +238,6 @@ impl ForgeConfig {
["enable_storage_sharding"] = true.into();
helm_values["validator"]["config"]["indexer_db_config"]["enable_event"] = true.into();
helm_values["fullnode"]["config"]["indexer_db_config"]["enable_event"] = true.into();

// This is a temporary hack to disable new pipeline for compat tests.
if !suite_name
.as_ref()
.is_some_and(|name| name.eq_ignore_ascii_case("compat"))
{
// enable new pipeline
helm_values["validator"]["config"]["consensus"]["enable_pipeline"] = true.into();
helm_values["fullnode"]["config"]["consensus_observer"]["enable_pipeline"] =
true.into();
}

// enable optqs
helm_values["validator"]["config"]["consensus"]["quorum_store"]
["enable_opt_quorum_store"] = true.into();
}))
}

Expand Down

0 comments on commit 8c11da3

Please sign in to comment.