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
When using idle-queues --delete, the normal behavior is to delete failed queues along with their normal counterpart.
SQS's naming scheme for FIFO queues (appending .fifo) messes this, up, because our normal _failed becomes _failed.fifo. This is handled properly in enqueue and worker but not in idle-queues.
The fix is to generate the failed queue names properly in the idle-queues command.
The text was updated successfully, but these errors were encountered:
When using
idle-queues --delete
, the normal behavior is to delete failed queues along with their normal counterpart.SQS's naming scheme for FIFO queues (appending
.fifo
) messes this, up, because our normal_failed
becomes_failed.fifo
. This is handled properly inenqueue
andworker
but not inidle-queues
.The fix is to generate the failed queue names properly in the
idle-queues
command.The text was updated successfully, but these errors were encountered: