Skip to content

Commit

Permalink
Merge pull request #134 from harness/FFM-11759
Browse files Browse the repository at this point in the history
fix: [FFM-11759]: fix incorrect number variation warning message
  • Loading branch information
conormurray95 authored Jul 4, 2024
2 parents 21fac38 + f580b90 commit 16c288c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/api/Evaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public double NumberVariation(string key, Target target, double defaultValue)
double res;
if (variation != null && double.TryParse(variation.Value, out res)) return res;

LogEvaluationFailureError(FeatureConfigKind.String, key, target, defaultValue.ToString());
LogEvaluationFailureError(FeatureConfigKind.Int, key, target, defaultValue.ToString());
return defaultValue;
}

Expand Down

0 comments on commit 16c288c

Please sign in to comment.