One more notice (#5429)
authorMichael Vogel <icarus@dabo.de>
Sat, 21 Jul 2018 00:43:22 +0000 (02:43 +0200)
committerHypolite Petovan <mrpetovan@eml.cc>
Sat, 21 Jul 2018 00:43:21 +0000 (20:43 -0400)
* Some more notices

* And some more notice in the worker

src/Core/Worker.php

index f649e77..633b8e1 100644 (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.