Skip to content

Commit cc871c0

Browse files
author
Chaitanya Kuber
committed
fixed spelling error and removed debug code
1 parent 48a7feb commit cc871c0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/Resque.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ public static function pop($queue)
128128
/**
129129
* Return the size (number of pending jobs) of the specified queue.
130130
*
131-
* @param $queue name of the queue to be checked for pendign jobs
131+
* @param $queue name of the queue to be checked for pending jobs
132132
*
133133
* @return int The size of the queue.
134134
*/

lib/Resque/Worker.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,6 @@ public function work($interval = 5)
234234
public function perform(Resque_Job $job)
235235
{
236236
try {
237-
$this->log("afterFork being triggered", self::LOG_VERBOSE);
238237
Resque_Event::trigger('afterFork', $job);
239238
$job->perform();
240239
}
@@ -584,4 +583,4 @@ public function getStat($stat)
584583
return Resque_Stat::get($stat . ':' . $this);
585584
}
586585
}
587-
?>
586+
?>

0 commit comments

Comments
 (0)