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
The listener attempts to create the error queue since it wasn't found, and gets a QueueAlreadyExists error immediately.
If I specify the error queue as process-queue-error and it already exists, I don't get any errors, because it comes back in the ListQueues call that uses the prefix.
A couple solutions to this but it's a pretty big issue for anyone using pre-created queues.
The text was updated successfully, but these errors were encountered:
Say I have two existing queues: a queue
process-queue
and an error queueerror-queue
.My error queue is never flagged as existing because the
ListQueues
operation is prefixed to the main queue name:python-sqs-listener/sqs_listener/__init__.py
Lines 85 to 94 in 03400ca
The listener attempts to create the error queue since it wasn't found, and gets a
QueueAlreadyExists
error immediately.If I specify the error queue as
process-queue-error
and it already exists, I don't get any errors, because it comes back in theListQueues
call that uses the prefix.A couple solutions to this but it's a pretty big issue for anyone using pre-created queues.
The text was updated successfully, but these errors were encountered: