diff --git a/testsuite/forge/src/config.rs b/testsuite/forge/src/config.rs index 980ba6c650ce2..fd12c6ef1b789 100644 --- a/testsuite/forge/src/config.rs +++ b/testsuite/forge/src/config.rs @@ -239,21 +239,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(); })) }