I am using Unleash feature toggle (from getunleash.io). The feature toggle and its variant are setup on the non-production and production environment. To make sure unleash configuration is loaded, I am subscribing to the "ready" event
unleash?.subscribe(name: "ready") {
...
}
In non-production env, I am able to get the event back and receive the feature toggle configuration. However in production environment nothing is coming back. All the setup of the feature toggle and its variant is no different with lower environment. Is there any specific thing that has to be configured in the production environment that may have caused this?