This commit is contained in:
2026-05-14 12:49:50 +02:00
parent 348ae7f153
commit edc8da02a3
12 changed files with 823 additions and 120 deletions

View File

@@ -1087,7 +1087,7 @@ pub(crate) async fn demo_pipeline2_validate_local_pipeline(
let service = kb_lib::LocalPipelineValidationService::new(database.clone());
let profile_code = match request {
Some(request) => request.profile_code,
None => "0.7.35_non_trade_fee_reward_admin".to_string(),
None => "0.7.36_meteora_family_consolidation".to_string(),
};
let run_result = match profile_code.as_str() {
"0.7.27" | "0.7.27_dexes_non_regression" => {
@@ -1117,6 +1117,9 @@ pub(crate) async fn demo_pipeline2_validate_local_pipeline(
"0.7.35" | "0.7.35_non_trade_fee_reward_admin" => {
service.validate_v0_7_35_current_database().await
},
"0.7.36" | "0.7.36_meteora_family_consolidation" => {
service.validate_v0_7_36_current_database().await
},
other => Err(kb_lib::Error::InvalidState(format!(
"unsupported local pipeline validation profile: {other}"
))),