Removing the lock after the process was removed is better

This commit is contained in:
Michael 2017-06-05 16:56:21 +00:00
parent b86c4d539e
commit 2bff8e302a
1 changed files with 2 additions and 2 deletions

View File

@ -752,11 +752,11 @@ function poller_run_cron() {
if (array_search(__file__,get_included_files())===0){
poller_run($_SERVER["argv"],$_SERVER["argc"]);
Lock::remove('poller_worker');
poller_unclaim_process();
get_app()->end_process();
Lock::remove('poller_worker');
killme();
}