From afdf9227c961c0e31611911bf10f9922ce3e51a1 Mon Sep 17 00:00:00 2001 From: aldenhu Date: Wed, 15 Jan 2025 10:56:37 -0800 Subject: [PATCH] disable the new pipeline for forge --- testsuite/forge/src/config.rs | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/testsuite/forge/src/config.rs b/testsuite/forge/src/config.rs index 61584befb8752..fd12c6ef1b789 100644 --- a/testsuite/forge/src/config.rs +++ b/testsuite/forge/src/config.rs @@ -239,17 +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(); - } })) }