Skip to content

Commit

Permalink
Fixed Mission Options in queue:listen (#17645) (#17687)
Browse files Browse the repository at this point in the history
ListenerOptions was missing force and tries options.
  • Loading branch information
Sepix authored and taylorotwell committed Jan 31, 2017
1 parent 17ee3fd commit dc3fa7c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Illuminate/Queue/Console/ListenCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,8 @@ protected function gatherOptions()
{
return new ListenerOptions(
$this->option('env'), $this->option('delay'),
$this->option('memory'), $this->option('timeout')
$this->option('memory'), $this->option('timeout'),
$this->option('tries'), $this->option('force')
);
}

Expand Down

0 comments on commit dc3fa7c

Please sign in to comment.