David Gradwell
David Gradwell
I too, would like this feature.. and not because I need to load some config beforehand, but I use a lot of custom transport strategies that have injected dependencies. It...
@constb your problem is that the reply queue is not automatically created. Also, if you want to manually ack messages, you need to set `noAck` to `false`. The `noAck` parameter...
@constb what you are proposing would be a major breaking change, as many people are likely using it the way it works now.
@rgstephens Try setting it to zero.
@rgstephens Hey, you might be on to something. We are using custom connectors, but perhaps I missed something when updating.
@rgstephens OK, so upon further investigation, we cannot see anything in our custom connector that would indicate how or why the domain session would not be properly setup. It's nearly...
I'll try to setup a reproduction repo.
@rgstephens Here's a repo that reproduces the issue https://github.com/dgradwell-ams/rasa-issue-11061 I've set the expiration time to 1 minute in the configuration to demonstrate easily. See the README.
The way that I worked around it was to patch the defaults in the core constants in my docker image to the values I need. This confirms that the defaults...
I'm building my own image in a complicated process that makes it cross-platform between linux/amd64 and linux/arm64 so that it can be loaded on Apple Silicon for local development..... In...