-
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
Fix a flaky failure in VM Agent e2e test "testExternalNode" #6154
Conversation
/test-vm-e2e |
/test-all |
/test-vm-e2e |
2 similar comments
/test-vm-e2e |
/test-vm-e2e |
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 overall, one nit
The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and and a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
/test-vm-e2e |
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
/skip-conformance |
@tnqn @luolanzone Thanks for reviewing and merging it. May I know if we need to back port it or not? |
We can backport to 1.14 and 1.15 if it helps stablize e2e tests. |
…o#6154) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…o#6154) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…o#6154) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…o#6154) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…o#6154) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…6184) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
…6185) The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation. The fix is to introduce a retry when checking the VM network configurations, and add a check on the count of the default route before return. Signed-off-by: Wenying Dong <wenyingd@vmware.com>
The failure occurs when the check is performed before the default route on the uplink is removed, then two interfaces are found, which leads to a mismatch with the expectation.
The fix is to introduce a retry when checking the VM network configurations, and and a check on the count of the default route before return.
Fix: #6147