From 3309bc818a9188a0bd9e8e583eb42024abddeb0a Mon Sep 17 00:00:00 2001 From: Art4 Date: Sat, 28 Dec 2024 23:36:15 +0000 Subject: [PATCH] Fix duplicate usage of the $mode variable --- src/App.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/App.php b/src/App.php index 472a1cd773..f163230ce8 100644 --- a/src/App.php +++ b/src/App.php @@ -480,18 +480,18 @@ class App $pidfile = $config->get('jetstream', 'pidfile'); if (in_array('start', (array)$_SERVER['argv'])) { - $mode = 'start'; + $daemonMode = 'start'; } if (in_array('stop', (array)$_SERVER['argv'])) { - $mode = 'stop'; + $daemonMode = 'stop'; } if (in_array('status', (array)$_SERVER['argv'])) { - $mode = 'status'; + $daemonMode = 'status'; } - if (!isset($mode)) { + if (!isset($daemonMode)) { die("Please use either 'start', 'stop' or 'status'.\n"); } @@ -512,11 +512,11 @@ class App $pid = intval(file_get_contents($pidfile)); } - if (empty($pid) && in_array($mode, ['stop', 'status'])) { + if (empty($pid) && in_array($daemonMode, ['stop', 'status'])) { die("Pidfile wasn't found. Is jetstream running?\n"); } - if ($mode == 'status') { + if ($daemonMode == 'status') { if (posix_kill($pid, 0)) { die("Jetstream process $pid is running.\n"); } @@ -526,7 +526,7 @@ class App die("Jetstream process $pid isn't running.\n"); } - if ($mode == 'stop') { + if ($daemonMode == 'stop') { posix_kill($pid, SIGTERM); unlink($pidfile);