Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disable the new pipeline for forge #15742

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading