Questions tagged [featuretoggle]

A Feature Toggle is a method for turning off a feature a programmer is working on, therefore avoiding the need for a feature branch. It is also called a feature bit, flag, flipper or switch.

A Feature Toggle is a method for turning off a feature a programmer is working on, therefore avoiding the need for a feature branch. It is also called a feature bit, flag, flipper or switch.

Martin Fowler wrote a classic blog post on it: http://martinfowler.com/bliki/FeatureToggle.html

74 questions
1
vote
1 answer

Control Togglz from a single place

We are currently attempting to implement the Togglz library in Spring-MVC. We currently manage the toggles in our code from our MyFeatures.java file in the following way: import org.togglz.core.Feature; import…
Joe
  • 678
  • 9
  • 24
1
vote
1 answer

Togglz feature state change notification

I have two application - api and dashboard. Both of these applications use the same Features from the same database. Togglz console is only active in dashboard application. The issue is that when I change the state of the feature in my dashboard…
alexanoid
  • 24,051
  • 54
  • 210
  • 410
1
vote
1 answer

Feature Flags in angular 2 application, how to share an object with all components

I'm trying to implement feature flags in my angular2 application, so I can be able to release features, that are not quite ready for produktion. Right now I have two markets, English and German market. I want to control the features separately on…
Mikkel
  • 1,771
  • 11
  • 35
  • 59
1
vote
0 answers

Dev branch and end of sprint

We are 3 developers working on the same project and currently we have a branch each that we merge together when we all are done. We would like to start using branches like dev/main/release so we all do our work in the same dev branch. At the end of…
RockNRoll
  • 13
  • 3
1
vote
1 answer

Sinatra API feature toggle

The gist Is it possible to bake feature-toggle-like functionality into a Sinatra application? A bit about feature toggles, just in-case ;) Back story I've set up a modular Sinatra project, and I tend to implement a GET/POST/PUT/DELETE endpoint for…
MrHaze
  • 3,786
  • 3
  • 26
  • 47
0
votes
1 answer

Can we use Firebase remote config for feature management on the backend? Is it recommended?

I am trying to add feature toggle/management in my NodeJS backend deployed on AWS Lambda.There were many feature management services like Unleash and LaunchDarkly but I found firebase was cheapest of them all. But in my opinion firebase remote…
0
votes
0 answers

How to use ABTasty's Flagship SDK for experimentation in .net 6 API with a generic approach?

I'm exploring ABTasty's flagship SDK for .Net 6 web api but it doesn't have samples of integration into .net 6 web api. When I googled, the resources are none for .net. If anyone used it before, request your help. Flagship .net SDK resource As of…
BVS
  • 421
  • 1
  • 9
  • 17
0
votes
0 answers

Updating Audiences in the Optimizely using the SDK

There is a requirement for updating audiences, we searched a lot, and apparently, there is no such feature in the java SDK. The requirement is that there is a micro-service that notifies us to include a new audience in an already existing feature…
Sia
  • 139
  • 2
  • 10
0
votes
0 answers

GetUnleash.io: "ready" event not firing in Production environment

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"…
Andi Setiyadi
  • 197
  • 1
  • 1
  • 11
0
votes
0 answers

Why doesn't vscode return error when calling an async method from a non-async wrapper method?

I have the following code that works fine as is - aka no errors and it builds / runs: if (featureManager.IsEnabledAsync("FeatureToggleABC").Result) { backgroundTask.Run(u => u.AddUserIntoGroup(userName, groupName,…
dot
  • 14,928
  • 41
  • 110
  • 218
0
votes
1 answer

Unleash - BeanCreationException: Error creating bean with name 'unleashConfig'

I'm new to feature toggles and using them in a java project. So I'm trying to integrate unleash into my Demo Vaadin Flow Project which is giving me this BeanCreationException/IllegalArgumentException: at…
0
votes
1 answer

How to add a feature flag for certain features in react projects

We have a react projects that are deployed in azure using azure devops. Recently, we are planning to implement a new concept into our existing react projects. As, it will take almost 3 months to complete the concept, we want to implement some…
saon
  • 591
  • 1
  • 7
  • 19
0
votes
1 answer

Feature toggling using Expressjs middleware - frontend and backend

My current project is using Node for both frontend and backend and ExpressJS as the middleware. I have a requirement where I need a feature toggling implementation to introduce some new features in my application. I am using a url parameter, e.g.…
Kunwar
  • 67
  • 3
  • 7
0
votes
1 answer

How to support future feature flags - eg. the site will shut down in 10 min

In the feature flag offerings out there (flagship, launchdarkly, unleashed,...) you can toggle a feature-flag on and off. There are situations where a toggle will happen in the future. E.g. the site will shut down in xx minutes How do we best…
Carlo V. Dango
  • 13,322
  • 16
  • 71
  • 114
0
votes
0 answers

hide/show a toggle in root.plist

I want to add a toggle in Root.plist of settings bundle for a feature. I want to hide the toggle on production and show it on the development build since the feature is not complete. I have added the toggle and checked the condition in the…