Microservices - Configuration and Secrets Management
Consider this pseudocode for a microservice using feature toggles:
if (featureToggle.isEnabled('betaFeature')) {
return 'Beta feature active';
} else {
return 'Beta feature inactive';
}
If the toggle betaFeature is OFF, what will be the output?