This commit is contained in:
2026-05-24 17:17:26 +02:00
parent 6176c5d4cd
commit 69c8f6c957
25 changed files with 2354 additions and 133 deletions

View File

@@ -1279,7 +1279,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.40_raydium_effective_surfaces".to_string(),
None => "0.7.42_raydium_family_event_coverage".to_string(),
};
let run_result = match profile_code.as_str() {
"0.7.27" | "0.7.27_dexes_non_regression" => {
@@ -1329,6 +1329,9 @@ pub(crate) async fn demo_pipeline2_validate_local_pipeline(
"0.7.41" | "0.7.41_raydium_amm_v4_swap_decoder" => {
service.validate_v0_7_41_current_database().await
},
"0.7.42" | "0.7.42_raydium_family_event_coverage" => {
service.validate_v0_7_42_current_database().await
},
other => Err(kb_lib::Error::InvalidState(format!(
"unsupported local pipeline validation profile: {other}"
))),