Skip to content

Commit

Permalink
Update ConfigurationHandler.js
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumar1607 authored Aug 20, 2024
1 parent 306f141 commit f8c1cbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/configurations/ConfigurationHandler.js
Original file line number Diff line number Diff line change
Expand Up @@ -823,7 +823,7 @@ const ConfigurationHandler = () => {
// case 1: user doesn't belong to any of the rules
// case 2: feature flag is targeted with rules, but entityAttributes are not passed
// use the entityId and check whether the entityId is eligible for the default rollout
if (this.rollout_percentage === 100 || (getNormalizedValue(''.concat(entityId, ':', feature.feature_id)) < feature.rollout_percentage)) {
if (feature.rollout_percentage === 100 || (getNormalizedValue(''.concat(entityId, ':', feature.feature_id)) < feature.rollout_percentage)) {
resultDict.value = feature.enabled_value;
resultDict.details.valueType = `ENABLED_VALUE`;
} else {
Expand Down

0 comments on commit f8c1cbb

Please sign in to comment.