fix max record number (#279)

This commit is contained in:
James Takai / hach1yon
2021-12-11 01:45:47 +09:00
committed by GitHub
parent 794b8f2431
commit d3574134f7

View File

@@ -22,7 +22,7 @@ use std::{
};
// 一度にtimelineやdetectionを実行する行数
const MAX_DETECT_RECORDS: usize = 40000;
const MAX_DETECT_RECORDS: usize = 5000;
fn main() {
let analysis_start_time: DateTime<Local> = Local::now();