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
Given we are passing the exact queue names to SqsListener, I'd like to update the code so that it looks for each queue individually. Something like this:
This is just to get the concept apart, I realize that there needs to be support for when AWS_ACCOUNT_ID env var is set and there may be a few other changes to match the rest of the code as well. I'll submit a complete PR assuming this sounds like a direction you are OK with and this project is still active (which it seems to be).
Thanks!
The text was updated successfully, but these errors were encountered:
I know it's been a year, but I'm trying to give this project a little attention now. If you don't mind explaining the issue better, it's not clear to me what the problem is you're running into
When creating queues via CloudFormation you can allow the queue names to be generated automatically. For example a template with these resources:
Generates two queues named
StackName-MailQueue-UPCWLGTA34SP
andStackName-MailDeadLetterQueue-1TD3W1IE8HV2C
.Currently, the codebase only looks for queues that match the queue name as a prefix.
https://github.com/nimbusscale/python-sqs-listener/blob/master/sqs_listener/__init__.py#L80
Given we are passing the exact queue names to
SqsListener
, I'd like to update the code so that it looks for each queue individually. Something like this:This is just to get the concept apart, I realize that there needs to be support for when
AWS_ACCOUNT_ID
env var is set and there may be a few other changes to match the rest of the code as well. I'll submit a complete PR assuming this sounds like a direction you are OK with and this project is still active (which it seems to be).Thanks!
The text was updated successfully, but these errors were encountered: