mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
94916bc46d
## About the changes Adding details based on customer struggles
944 B
944 B
title |
---|
My feature flag is enabled but all/some of our users are not exposed to it |
To confirm how users will have flags resolved, follow these steps:
- Ensure your application is waiting for the
ready
event: It could be that frontend clients are callingisEnabled('feature-flag')
before they have the response from the server. In this case, you should defer isEnabled calls until the client has emitted theready
event. - The Unleash Playground was developed with this particular use case in mind. An access token can be used along with context values (passed in via the UI) to see how a flag will be resolved.
- When using a gradual rollout strategy, be mindful of the stickiness value. When evaluating a flag, if the provided context does not include the field used in the stickiness configuration, the gradual rollout strategy will be evaluated to
false
.