Skip to content

Conversation

@mixxtor
Copy link

@mixxtor mixxtor commented Nov 29, 2025

This PR fixes a mismatch between the documentation and the actual command flags.


The documentation currently shows usage examples such as:
queue:work --queue=default --queue=email

However, the command implementation only defines the following flags:

  • --queues
  • -q (alias)

As a result, using --queue produces:
ERROR Unknown flag "--queue"

This commit adds the "queue" alias so the command accepts:

  • --queue
  • --queues
  • -q

This change ensures consistency with the documentation and improves usability for users following the provided examples. No breaking changes introduced.

This PR fixes a mismatch between the documentation and the actual command flags.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Flag mismatch: Documentation uses "--queue" but command only supports "--queues" / "-q"

1 participant