-
Notifications
You must be signed in to change notification settings - Fork 387
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
[Windows] Bugfix for MTU configuration on nonexistent interface #2778
Conversation
/test-all |
Codecov Report
@@ Coverage Diff @@
## main #2778 +/- ##
==========================================
- Coverage 60.91% 60.38% -0.54%
==========================================
Files 285 284 -1
Lines 23041 23549 +508
==========================================
+ Hits 14035 14219 +184
- Misses 7497 7790 +293
- Partials 1509 1540 +31
Flags with carried forward coverage won't be shown. Click here to find out more.
|
Fixes #2754 |
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.
s/nonexist/nonexistent/
/test-all |
/test-all |
/test-all |
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
@wenyingd do we have any test that can detect this issue in the future if it's broken? |
Not yet. I am thinking maybe we could add check in the e2e test in another PR. |
We don't have any e2e test using containerd? |
No, the current windows-e2e-test is running Windows setup using Docker. @lzhecheng could correct me. |
Configure MTU in a separate goroutine after the host interface is created. Signed-off-by: wenyingd <wenyingd@vmware.com>
/skip-all |
/test-windows-e2e |
Use a separate goroutine to process interface configuration async. The
configurations are taken after the host interface is created.
Signed-off-by: wenyingd wenyingd@vmware.com
Fixes #2773