We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a03f00f commit 7c9c183Copy full SHA for 7c9c183
bin/resque
@@ -96,7 +96,7 @@ if(!empty($PREFIX)) {
96
if($count > 1) {
97
for($i = 0; $i < $count; ++$i) {
98
$pid = Resque::fork();
99
- if($pid === false || pid === -1) {
+ if($pid === false || $pid === -1) {
100
$logger->log(Psr\Log\LogLevel::EMERGENCY, 'Could not fork worker {count}', array('count' => $i));
101
die();
102
}
@@ -126,4 +126,4 @@ else {
126
$logger->log(Psr\Log\LogLevel::NOTICE, 'Starting worker {worker}', array('worker' => $worker));
127
$worker->work($interval, $BLOCKING);
128
129
-?>
+?>
0 commit comments