mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-24 04:06:03 +00:00
Merge pull request #42661 from dashpole/garbage_fix
Automatic merge from submit-queue [Bug Fix] Garbage Collect Node e2e Failing This node e2e test uses its own deletion timeout (1 minute) instead of the default (3 minutes). #41644 likely increased time for deletion. See that PR for analysis on that. There may be other problems with this test, but those are difficult to pick apart from hitting this low timeout. This PR changes the Garbage Collector test to use the default timeout. This should allow us to discern if there are any actual bugs to fix. cc @kubernetes/sig-node-bugs @calebamiles @derekwaynecarr
This commit is contained in:
commit
747b153265
@ -231,7 +231,7 @@ func containerGCTest(f *framework.Framework, test testRun) {
|
||||
AfterEach(func() {
|
||||
for _, pod := range test.testPods {
|
||||
By(fmt.Sprintf("Deleting Pod %v", pod.podName))
|
||||
f.PodClient().DeleteSync(pod.podName, &metav1.DeleteOptions{}, defaultRuntimeRequestTimeoutDuration)
|
||||
f.PodClient().DeleteSync(pod.podName, &metav1.DeleteOptions{}, podDisappearTimeout)
|
||||
}
|
||||
|
||||
By("Making sure all containers get cleaned up")
|
||||
|
Loading…
Reference in New Issue
Block a user