From d3574134f71d84b8496d8b235dab6e2899482912 Mon Sep 17 00:00:00 2001 From: James Takai / hach1yon <32596618+hach1yon@users.noreply.github.com> Date: Sat, 11 Dec 2021 01:45:47 +0900 Subject: [PATCH 1/2] fix max record number (#279) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index b28c350c..0e898eb8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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::now();