diff --git a/src/projects/orchestrator/orchestrator.cpp b/src/projects/orchestrator/orchestrator.cpp index 9adc80335..5daa8341f 100644 --- a/src/projects/orchestrator/orchestrator.cpp +++ b/src/projects/orchestrator/orchestrator.cpp @@ -33,13 +33,14 @@ namespace ocst return false; } - _timer.Push( - [this](void *paramter) -> ov::DelayQueueAction { - DeleteUnusedDynamicApplications(); - return ov::DelayQueueAction::Repeat; - }, - 10000); - _timer.Start(); + // TODO(Getroot): 2024-10-07 // It has critical bug. It should be fixed. + // _timer.Push( + // [this](void *paramter) -> ov::DelayQueueAction { + // DeleteUnusedDynamicApplications(); + // return ov::DelayQueueAction::Repeat; + // }, + // 10000); + // _timer.Start(); return true; }