-
Notifications
You must be signed in to change notification settings - Fork 600
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
Not filter properly calls cleanup on it's nested filter #7310
Not filter properly calls cleanup on it's nested filter #7310
Conversation
Signed-off-by: Calum Murray <[email protected]>
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #7310 +/- ##
==========================================
- Coverage 77.66% 77.63% -0.03%
==========================================
Files 250 250
Lines 13436 13437 +1
==========================================
- Hits 10435 10432 -3
- Misses 2478 2481 +3
- Partials 523 524 +1
☔ View full report in Codecov by Sentry. |
/lgtm |
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.
/lgtm
/approve
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.
/lgtm
/approve
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: Cali0707, matzew, pierDipi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test upgrade-tests |
Fixes bug where the not filter does not call Cleanup on the nested filter. For the Any filter and All filter dialects, this cleanup method is needed to cleanup goroutines which are created, so without this the Not filter would create a memory leak.