-
Notifications
You must be signed in to change notification settings - Fork 1.2k
🌱 Followups to default low priority in mappers #3160
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
Conversation
Addresses Stefans comments
| } | ||
|
|
||
| // Create implements EventHandler. | ||
| func (h TypedFuncs[object, request]) Create(ctx context.Context, e event.TypedCreateEvent[object], q workqueue.TypedRateLimitingInterface[request]) { |
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.
Doing or caching this directly in the Funcs is problematic:
- It doesn't have a constructor, so can't do it there (We have to remember to never ever export types and only constructors for this kind of scenario)
- It has value receivers and we need some kind of locking if we want to cache this, but using a lock with value receivers means we copy the lock which the linter forbids
|
Thank you! /lgtm |
|
LGTM label has been added. Git tree hash: af9a4e5648437a0f999a13ad0c45b0fd82561fc8
|
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alvaroaleman, sbueringer 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 |
|
/hold cancel |
Addresses Stefans comments in #3152
/hold