Skip to content

Commit 7c9c183

Browse files
author
lixiangyang
committed
bin/resque 缺少一个$
1 parent a03f00f commit 7c9c183

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

bin/resque

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ if(!empty($PREFIX)) {
9696
if($count > 1) {
9797
for($i = 0; $i < $count; ++$i) {
9898
$pid = Resque::fork();
99-
if($pid === false || pid === -1) {
99+
if($pid === false || $pid === -1) {
100100
$logger->log(Psr\Log\LogLevel::EMERGENCY, 'Could not fork worker {count}', array('count' => $i));
101101
die();
102102
}
@@ -126,4 +126,4 @@ else {
126126
$logger->log(Psr\Log\LogLevel::NOTICE, 'Starting worker {worker}', array('worker' => $worker));
127127
$worker->work($interval, $BLOCKING);
128128
}
129-
?>
129+
?>

0 commit comments

Comments
 (0)