-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
In manager.go there's the following:
return manager.channel.ExchangeDeclare(
config.Name, // name
config.Type.String(), // type
config.Persisted, // durable
!config.Persisted, // auto-deleted
false, // internal
false, // no-wait
config.Args, // arguments
)This does not allow creating an exchange that is not durable, yet won't be auto-deleted. Those options aren't inverse of each-other, we need to supply false, false there for our purposes.
I'm happy to supply a PR to make this possible, but don't immediately see a good path forward for doing so without a change in behavior.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request