Skip to content

Commit 4cb6a17

Browse files
committed
Fix formatting
1 parent a904411 commit 4cb6a17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Microsoft.FeatureManagement/Telemetry/FeatureEvaluationTelemetry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public static void Publish(EvaluationEvent evaluationEvent, ILogger logger)
6969
if (evaluationEvent.VariantAssignmentReason == VariantAssignmentReason.DefaultWhenEnabled)
7070
{
7171
// If the variant was assigned due to DefaultWhenEnabled, the percentage reflects the unallocated percentiles
72-
double allocatedPercentage = evaluationEvent.FeatureDefinition.Allocation?.Percentile?.Sum(p => p.To - p.From) ?? 0;
72+
double allocatedPercentage = evaluationEvent.FeatureDefinition.Allocation?.Percentile?.Sum(p => p.To - p.From) ?? 0;
7373

7474
tags["VariantAssignmentPercentage"] = 100 - allocatedPercentage;
7575
}

0 commit comments

Comments
 (0)