mirror of
https://github.com/idanoo/php-resque
synced 2025-07-01 13:42:22 +00:00
Fixed syntax error
This commit is contained in:
parent
b242280ecd
commit
760e38c0ef
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ class Resque_Worker
|
|||
$job->perform();
|
||||
}
|
||||
catch(Exception $e) {
|
||||
$this->logger->log(Psr\Log\LogLevel::CRITICAL, '{job} has failed {stack}', array('job' => $job, 'stack' => (string)$e);
|
||||
$this->logger->log(Psr\Log\LogLevel::CRITICAL, '{job} has failed {stack}', array('job' => $job, 'stack' => (string)$e));
|
||||
$job->fail($e);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue