One more notice (#5429)

* Some more notices

* And some more notice in the worker
This commit is contained in:
Michael Vogel 2018-07-21 02:43:22 +02:00 committed by Hypolite Petovan
parent 6da47936c6
commit 6a6a805225
1 changed files with 1 additions and 1 deletions

View File

@ -577,7 +577,7 @@ class Worker
// How long is the process already running?
$duration = (time() - strtotime($entry["executed"])) / 60;
if ($duration > $max_duration) {
logger("Worker process ".$entry["pid"]." (".implode(" ", $argv).") took more than ".$max_duration." minutes. It will be killed now.");
logger("Worker process ".$entry["pid"]." (".substr(json_encode($argv), 0, 50).") took more than ".$max_duration." minutes. It will be killed now.");
posix_kill($entry["pid"], SIGTERM);
// We killed the stale process.