Logging message added

This commit is contained in:
Michael Vogel 2015-09-28 22:32:56 +02:00
parent f0cf9ce519
commit ed8cdc7d85
1 changed files with 3 additions and 1 deletions

View File

@ -85,8 +85,10 @@ function poller_run(&$argv, &$argc){
$id = q("SELECT `id` FROM `workerqueue` WHERE `id` = %d AND `pid` = %d",
intval($r[0]["id"]),
intval(getmypid()));
if (!$id)
if (!$id) {
logger("Queue item ".$r[0]["id"]." was executed multiple times - quitting this one", LOGGER_DEBUG);
continue;
}
$argv = json_decode($r[0]["parameter"]);