feat: cache 统一默认为 false (#9642)

workaround for #9639

之后删了
This commit is contained in:
zzyyyl
2024-07-13 08:10:00 +08:00
committed by GitHub
parent 2b040b16ad
commit c9a9a8a4cc

View File

@@ -704,7 +704,7 @@ asst::TaskConstPtr asst::TaskData::_default_task_info()
auto task_info_ptr = std::make_shared<TaskInfo>();
task_info_ptr->algorithm = AlgorithmType::MatchTemplate;
task_info_ptr->action = ProcessTaskAction::DoNothing;
task_info_ptr->cache = true;
task_info_ptr->cache = false;
task_info_ptr->max_times = INT_MAX;
task_info_ptr->pre_delay = 0;
task_info_ptr->post_delay = 0;