Skip to content

Commit 98d2799

Browse files
committed
Add missing options to rabbitmq:consume command
1 parent 7eade49 commit 98d2799

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG-11x.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [Unreleased](https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v11.0.1...master)
5+
## [Unreleased](https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v11.0.2...master)
6+
7+
## [11.0.2 (2020-09-20)](https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v11.0.1...v11.0.2)
8+
9+
- Add missing options to rabbitmq:consume command [#363](https://github.com/vyuldashev/laravel-queue-rabbitmq/issues/363)
610

711
## [11.0.1 (2020-09-19)](https://github.com/vyuldashev/laravel-queue-rabbitmq/compare/v11.0.0...v11.0.1)
812

src/Console/ConsumeCommand.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ class ConsumeCommand extends WorkCommand
1414
{--queue= : The names of the queues to work}
1515
{--once : Only process the next job on the queue}
1616
{--stop-when-empty : Stop when the queue is empty}
17-
{--delay=0 : The number of seconds to delay failed jobs}
17+
{--delay=0 : The number of seconds to delay failed jobs (Deprecated)}
18+
{--backoff=0 : The number of seconds to wait before retrying a job that encountered an uncaught exception}
19+
{--max-jobs=0 : The number of jobs to process before stopping}
20+
{--max-time=0 : The maximum number of seconds the worker should run}
1821
{--force : Force the worker to run even in maintenance mode}
1922
{--memory=128 : The memory limit in megabytes}
2023
{--sleep=3 : Number of seconds to sleep when no job is available}

0 commit comments

Comments
 (0)