Skip to content

Commit 55bf25e

Browse files
committed
Include PHP_BINARY in process title
1 parent 3613f80 commit 55bf25e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Cron/Observer/ProcessCronQueueObserver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,7 @@ protected function _runJob($scheduledTime, $currentTime, $jobConfig, $schedule,
354354
}
355355

356356
if (!isset($this->originalProcessTitle)) {
357-
$this->originalProcessTitle = implode(' ', $this->environment->getServer('argv'));
357+
$this->originalProcessTitle = PHP_BINARY . ' ' . implode(' ', $this->environment->getServer('argv'));
358358
}
359359

360360
if (strpos($this->originalProcessTitle, " --group=$groupId ") !== false) {

0 commit comments

Comments
 (0)