MAAT_OPT_SCAN_DETAIL选项的默认值错误的初始化为2,应该为0。

This commit is contained in:
zhengchao
2020-10-19 19:51:53 +08:00
parent dda54b519e
commit 4fbcf21ef5

View File

@@ -552,7 +552,7 @@ Maat_feather_t Maat_feather(int max_thread_num,const char* table_info_path,void*
feather->effect_interval_ms=60*1000;
feather->scan_interval_ms=1*1000;
feather->rule_scan_type=2;
feather->rule_scan_type=0;
feather->thread_call_cnt=alignment_int64_array_alloc(max_thread_num);
feather->outer_mid_cnt=alignment_int64_array_alloc(max_thread_num);
feather->compile_mid_cnt=alignment_int64_array_alloc(max_thread_num);