-
Notifications
You must be signed in to change notification settings - Fork 254
Return ErrNotImplemented from unixgramListener on windows and linux #4765
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
Reviewer's GuideThis PR updates the unixgramListener implementation on Linux and Windows to return ErrNotImplemented (introducing the drivers import) and refines the Unixgram socket logging message on macOS by removing an extraneous colon. Sequence Diagram: Updated unixgramListener Behavior on Linux/WindowssequenceDiagram
participant C as Caller
participant UL as "unixgramListener (Linux/Windows)"
participant D as "drivers package"
C->>UL: Call unixgramListener(context, virtualnetwork)
UL->>D: Access ErrNotImplemented
UL-->>C: Return (nil, ErrNotImplemented)
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Hey @vyasgun - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟢 General issues: all looks good
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
c6f0ba7
to
ba31670
Compare
tested on windows 11 and |
ba31670
to
180611a
Compare
df87093
to
836947e
Compare
836947e
to
5ebadf8
Compare
/retest |
@vyasgun: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
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: cfergeau 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 |
Description
Error should not be nil in the case of
unixgramListener
implementation indaemon_linux.go
anddaemon_windows.go
Relates to: #4764, PR #4753
Type of change
test, version modification, documentation, etc.)
Proposed changes
Testing
Contribution Checklist
Summary by Sourcery
Return ErrNotImplemented for unsupported unixgramListener implementations on Linux and Windows and adjust macOS logging formatting
Bug Fixes:
Enhancements: