Microservices - CI/CD for Microservices
In a microservice, consider this pseudocode:
What will be the output if the feature flag
if (featureFlags.isEnabled('experimental_ui')) {
return 'Experimental UI active';
} else {
return 'Experimental UI inactive';
}What will be the output if the feature flag
experimental_ui is disabled?