You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bin/console rabbitmq:delete throws InvalidArgumentException The "messages" option does not exist.
It's because this command extended from BaseConsumerCommand, that has this code:
protected function initialize(InputInterface $input, OutputInterface $output)
{
$this->amount = (int)$input->getOption('messages');
if (0 > $this->amount) {
throw new \InvalidArgumentException("The -m option should be null or greater than 0");
}
}