Skip to content

Commit

Permalink
Disabled dynamic app delete feature due to critical issue
Browse files Browse the repository at this point in the history
  • Loading branch information
getroot committed Oct 7, 2024
1 parent 7329413 commit fbe48c8
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions src/projects/orchestrator/orchestrator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit fbe48c8

Please sign in to comment.