Commit 2f61c955 authored by Denisson Leal's avatar Denisson Leal

remove unused variable

parent 78425378
...@@ -97,7 +97,6 @@ class MongoQueue extends DatabaseQueue ...@@ -97,7 +97,6 @@ class MongoQueue extends DatabaseQueue
protected function releaseJobsThatHaveBeenReservedTooLong($queue) protected function releaseJobsThatHaveBeenReservedTooLong($queue)
{ {
$expiration = Carbon::now()->subSeconds($this->retryAfter)->getTimestamp(); $expiration = Carbon::now()->subSeconds($this->retryAfter)->getTimestamp();
$now = time();
$reserved = $this->database->collection($this->table) $reserved = $this->database->collection($this->table)
->where('queue', $this->getQueue($queue)) ->where('queue', $this->getQueue($queue))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment