change strict to false

This commit is contained in:
xiuting.xu 2026-08-18 10:32:16 +08:00
parent 5fb79a7c8d
commit 4f6597476e
2 changed files with 2 additions and 3 deletions

View File

@ -488,7 +488,6 @@ pub fn log_startup_config(config: &AppConfig) {
config.slurm_dir.as_deref().unwrap_or("disabled")
);
info!("max_delta={}", config.max_delta);
info!("strict_ccr_validation=true");
info!(
"source_refresh_interval_secs={}",
config.source_refresh_interval.as_secs()

View File

@ -106,7 +106,7 @@ pub fn load_payloads_from_latest_sources_with_report(
aspa: snapshot.vaps.len(),
};
let produced_at = snapshot.produced_at.clone();
let conversion = snapshot_to_payloads_with_options(&snapshot, true)?;
let conversion = snapshot_to_payloads_with_options(&snapshot, false)?;
let invalid = PayloadTypeCounts {
total: conversion.invalid_vrps.len() + conversion.invalid_vaps.len(),
vrp: conversion.invalid_vrps.len(),
@ -146,7 +146,7 @@ pub fn load_payloads_from_latest_sources_with_report(
let after_slurm = PayloadTypeCounts::from_payloads(&payloads);
info!(
"loaded latest CCR snapshot: file={}, produced_at={:?}, vrp_count={}, vap_count={}, payload_count={}, strict_ccr_validation=true",
"loaded latest CCR snapshot: file={}, produced_at={:?}, vrp_count={}, vap_count={}, payload_count={}",
latest.display(),
produced_at,
snapshot.vrps.len(),