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 current code in BaseService and ControlPlaneServer generates topics like:
".<control plane / service name>"
replacing the '.' with an '-' works well, but then that might be incompatible with other message queues.
Perhaps passing the namespace and the service name to the "register_consumer" function on the message queue implementation would allow the different message queues to decide their own format?
The text was updated successfully, but these errors were encountered:
AWS SNS topics can only have '-' and '_' in the name. https://aws.amazon.com/sns/faqs/#Features_and_functionality
The current code in BaseService and ControlPlaneServer generates topics like:
".<control plane / service name>"
replacing the '.' with an '-' works well, but then that might be incompatible with other message queues.
Perhaps passing the namespace and the service name to the "register_consumer" function on the message queue implementation would allow the different message queues to decide their own format?
The text was updated successfully, but these errors were encountered: