Skip to content

Commit

Permalink
fix: remove non-error error log from parseFractionalEvaluationData (#446
Browse files Browse the repository at this point in the history
)

## This PR

- removes non-error error log from parseFractionalEvaluationData 

Signed-off-by: James Milligan <james@omnant.co.uk>
  • Loading branch information
james-milligan authored Feb 28, 2023
1 parent 798f71a commit 34aca79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/eval/fractional_evaluation.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func parseFractionalEvaluationData(values, data interface{}) (string, []fraction

v, ok := dataMap[bucketBy]
if !ok {
return "", nil, fmt.Errorf("%s isn't a found var in data", bucketBy)
return "", nil, nil
}

valueToDistribute, ok := v.(string)
Expand Down

0 comments on commit 34aca79

Please sign in to comment.