-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: updated context not passed to all hooks #1049
Conversation
6b906b1
to
ec3d4c7
Compare
ec3d4c7
to
c0e6d0f
Compare
@UtkarshSharma2612 feel free to add yourself as a reviewer if you want 🙏 |
// assert the connect overrides | ||
c.getBooleanValue("key", false, invocationCtx, FlagEvaluationOptions.builder().hook(hook).build()); | ||
|
||
// assert the correct overrides in before hook |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This failed before the fix.
})); | ||
|
||
// assert the correct overrides in after hook |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This failed before the fix.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1049 +/- ##
============================================
+ Coverage 95.04% 95.27% +0.22%
- Complexity 392 393 +1
============================================
Files 38 38
Lines 888 888
Branches 54 54
============================================
+ Hits 844 846 +2
+ Misses 24 23 -1
+ Partials 20 19 -1
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -503,7 +504,7 @@ public void finallyAfter(HookContext<Boolean> ctx, Map<String, Object> hints) { | |||
order.verify(hook2).before(captor.capture(), any()); | |||
|
|||
HookContext hc = captor.getValue(); | |||
assertEquals(hc.getCtx(), ctx); | |||
assertEquals(hc.getCtx().getTargetingKey(), targetingKey); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The instance of the evaluation context now changes here, but that's not something we guarantee.
74d2189
to
9a004bc
Compare
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
9a004bc
to
9dde9bb
Compare
Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Quality Gate passedIssues Measures |
There's no bug here, but this adds some asserts for a tricky bug I recently found in the Java SDK: open-feature/java-sdk#1049 Signed-off-by: Todd Baert <todd.baert@dynatrace.com>
Fixes an issue where the fully merged and updated context was used in the evaluation, but not in all hooks.
Fixes: #1047