Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions openfeature/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ const (
DefaultReason Reason = "DEFAULT"
// TargetingMatchReason - the resolved value was the result of a dynamic evaluation, such as a rule or specific user-targeting.
TargetingMatchReason Reason = "TARGETING_MATCH"
// TargetingMatchSplitReason - the resolved value was the result of a dynamic evaluation that resolves to a percentage split.
TargetingMatchSplitReason Reason = "TARGETING_MATCH_SPLIT"
// SplitReason - the resolved value was the result of pseudorandom assignment.
SplitReason Reason = "SPLIT"
// DisabledReason - the resolved value was the result of the flag being disabled in the management system.
Expand Down
Loading