-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Java library changes for feature flags #1341
Labels
enhancement
New feature or request
epic: feature flags
priority: high
High priority issue
release 6.0
Milestone
Comments
amurphy-cl
changed the title
Java library changes to feature flag API
Java library changes for feature flags
Mar 5, 2024
Closed
amurphy-cl
added
epic: feature flags
release 6.0
priority: high
High priority issue
labels
Mar 12, 2024
This doesn't seem like it was done, reopening |
Closing as done. |
danoswaltCL
added a commit
that referenced
this issue
Oct 1, 2024
* 1341 update java client library feature flag methods * 1341 update headers with userid, remove userid from requests * add request beans that now differ from responses --------- Co-authored-by: Benjamin Blanchard <[email protected]> Co-authored-by: danoswaltCL <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
enhancement
New feature or request
epic: feature flags
priority: high
High priority issue
release 6.0
Update Java client library's
getAllFeaturedFlags
andgetFeatureFlag
methods to call POST/featureflags
.Use the new structure for request / response as defined in #1340
getAllFeatureFlags will internally call
POST /featureflags
with a similar structure as getAllExperimentConditions(), with userId and context, and will store the list of key strings on the client.getFeatureFlag
should take a string and returntrue
if the flags list contains that flag key, andfalse
if it is not found.The text was updated successfully, but these errors were encountered: