This commit is contained in:
2025-12-14 17:35:40 -08:00
parent b963ee80a1
commit bdb919699b

View File

@@ -52,7 +52,7 @@ async fn main()->Result<(),Error>{
let last=last.time*(ONE_SECOND as f64); let last=last.time*(ONE_SECOND as f64);
let first=first.time*(ONE_SECOND as f64); let first=first.time*(ONE_SECOND as f64);
let duration=last as u64-first as u64; let duration=last as u64-first as u64;
if 30000<duration{ if 30000*ONE_SECOND<duration{
self.outliers.push(path.to_owned()); self.outliers.push(path.to_owned());
return; return;
} }