We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d9c1ab commit 6197d71Copy full SHA for 6197d71
src/main/java/dev/openfeature/sdk/OpenFeatureClient.java
@@ -164,9 +164,7 @@ private EvaluationContext mergeEvaluationContext(
164
? openfeatureApi.getTransactionContext()
165
: new ImmutableContext();
166
167
- EvaluationContext mergedInvocationCtx = invocationContext.merge(hookContext);
168
-
169
- return apiContext.merge(transactionContext.merge(clientContext.merge(mergedInvocationCtx)));
+ return apiContext.merge(transactionContext.merge(clientContext.merge(invocationContext.merge(hookContext))));
170
}
171
172
private <T> ProviderEvaluation<?> createProviderEvaluation(
0 commit comments