This fixes an issue where if --queues is unset, it would always remove all configured queues.
The queues variable is set to an empty tuple () by default and when evaluating it with queues is not None would always evaluate to True, therefore removing all configured queues.
This fixes an issue where if
--queues
is unset, it would always remove all configured queues.The
queues
variable is set to an empty tuple()
by default and when evaluating it withqueues is not None
would always evaluate toTrue
, therefore removing all configured queues.