Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
39 views

AWS AppConfig Multi-Variant Feature Flags: Context Not Working (Always Returns Default Variant) Problem I'm trying to fetch AWS AppConfig Multi-Variant feature flags with user context from my React ...
17_046 Hariharan T's user avatar
0 votes
1 answer
124 views

I am trying to manage feature flag variations for groups of users via the LaunchDarkly API. My goal is to migrate users in groups, switching variations on a flag for specific segments, so I can change ...
Ilia's user avatar
  • 367
0 votes
0 answers
37 views

We are using the Togglz library to implement the Feature Toggles pattern in one of our projects. It works as designed for boolean options. However, in certain cases we rather want to switch between ...
user1438038's user avatar
  • 6,128
0 votes
0 answers
52 views

I've been implementing Launchdarkly within a old .net framework webforms application. Things were going well until I came to this issue and I'm not sure the best method to mitigate it. Problem: I ...
Mike's user avatar
  • 449
1 vote
2 answers
77 views

We use domain objects to encapsulate business logic. Sometimes, we need to change the behavior of an entity due to new system requirements. A common approach is to modify the method or property by ...
Daggen's user avatar
  • 61
2 votes
1 answer
264 views

I'm trying to unit test a function that is partly controlled by a LaunchDarkly flag. My wish is for the flag to be set to true for every test case but one. To achieve that I'm trying to set specific ...
Gabe's user avatar
  • 1,306
1 vote
0 answers
59 views

This is more like a design question. We have an in-house AB testing tool and we want to understand what is the best practice on where the feature flag resolution happens in the code. By Resolve I mean ...
Girish Subramanian's user avatar
0 votes
1 answer
145 views

Our Spring Java application should use Azure App Configuration service to manage feature flags. The problem is that there is no way to run App Configuration service locally through Docker like other ...
zashto's user avatar
  • 11
0 votes
1 answer
134 views

Currently We are evaluating LaunchDarkly to incorporate. We have a specific use case like below. App -> LD (LaunchDarkly) LD -> My-Own-Service // feature flag evaluation based on context ...
Venkat Ballem's user avatar
1 vote
2 answers
2k views

I'm trying to integrate LaunchDarkly into my project. I'm seeing a problem where the LdClient connects in one version and doesn't in another. The code is essentially identical. I got their example ...
Peter's user avatar
  • 290
0 votes
0 answers
199 views

We need a way to have our gitlab-ci.yml create a JSON file with all our flags and their status inside, every time the pipeline is run. I've been reading up on Unleash proxy and client SDKs for real ...
dot's user avatar
  • 15.9k
5 votes
1 answer
135 views

I want to skip TLS verification for flagsmith. Note: I'm using flagsmithv3 go sdk. This is my current code: func InitializeFlagsmith() *flagsmith.Client { apiKey := "ser..." ...
devi's user avatar
  • 76
0 votes
2 answers
3k views

I'm trying to setup a feature flag for a Typescript project. The code below is from the https://www.npmjs.com/package/unleash-client. Where I create and connect to an unleash instance. This is all ...
ENV's user avatar
  • 1,342
1 vote
1 answer
191 views

I would like to use Gitlab Feature Flags instead ones from split.io. But one key feature that I would like to have on Gitlab is the review approval: when a user requests a change on the status of a ...
Librorio Tribio's user avatar
3 votes
1 answer
473 views

In Flagsmith, is there a way to tie Feature Flags together in a way that if I enable Feature Flag "A", and that requires Feature Flag "B", then the user is warned that Flag "B&...
rsc's user avatar
  • 10.7k
0 votes
2 answers
553 views

I am using azure app configurations to store my feature flags. By default feature flags are loaded as per the current profile, set in application.yaml like: spring.profile.active Now, my deployment ...
Charu Jain's user avatar
0 votes
1 answer
123 views

I am trying to set up Feature Flags for my Android GitLab project. I am using Unleash Android Proxy SDK for it. I added dependencies in build.gradle file as per the readme, but my code does not seem ...
Sanket B's user avatar
  • 1,119
2 votes
1 answer
311 views

I created a custom feature filter and in EvaluateAsync I get the feature flag's custom settings from Azure's Feature manager for this specific feature flag's filter. public virtual Task<Boolean> ...
ScubaSteve's user avatar
  • 8,380
0 votes
1 answer
40 views

I’m working on a project where we would like to add a new option for a StreamBlock but only have that option be available to some (paid) users. So, ideally we would like to put this new option behind ...
BrendaD's user avatar
  • 35
2 votes
0 answers
531 views

I am using ngrx in my project and I would like to include feature flagging on it, but I was checking some articles on the web and none of them mention ngrx, they used plain Angular service, guard or ...
Alejandro's user avatar
  • 112
0 votes
0 answers
248 views

I have a Java Spring Boot application currently connected to an on premises database. I am trying to figure out how to toggle between the existing datasource and a new one I have added. I have both ...
tobes's user avatar
  • 124
1 vote
1 answer
2k views

My backend is composed of multiple microservices that talk to each other via HTTPs. In each service, there is a simple feature flag manager that reads from a configuration file and decides whether or ...
a.koptan's user avatar
  • 1,257
1 vote
1 answer
2k views

I'm using LaunchDarkly in a web app and am playing around with using the 'localStorage' bootstrap option on initialization. With this option I clearly see my flags in localStorage and they look to be ...
Retza's user avatar
  • 11
0 votes
1 answer
808 views

I'm wondering if there is any pattern or implementation that allows me to enable/disable all the controllers at once of a given spring boot application by using a simple boolean variable that was ...
Đức Trường Đặng's user avatar
0 votes
1 answer
261 views

Any ideas for caching or otherwise reducing the number of requests when using Azure App Config for feature flagging? The .NET sdk docs does provide some options including a .SetCacheExpiration method ...
Omid W's user avatar
  • 1