Skip to content

Commit ad27bfa

Browse files
committed
Fixed soure rollout issue
1 parent 7c85347 commit ad27bfa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OptimizelySDK/Bucketing/DecisionService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ public virtual Result<FeatureDecision> GetVariationForFeature(FeatureFlag featur
632632
}
633633

634634
Logger.Log(LogLevel.INFO, reasons.AddInfo($"The user \"{userId}\" is not bucketed into a rollout for feature flag \"{featureFlag.Key}\"."));
635-
return Result<FeatureDecision>.NullResult(reasons);
635+
return Result<FeatureDecision>.NewResult(new FeatureDecision(null, null, FeatureDecision.DECISION_SOURCE_ROLLOUT), reasons); ;
636636
}
637637

638638
/// <summary>

0 commit comments

Comments
 (0)