mirror of https://github.com/k3s-io/k3s
Merge pull request #61725 from liggitt/pod-deletion-contention
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Pod deletion can be contended, causing test failure Observed this running e2e tests downstream ```release-note NONE ```pull/8/head
commit
1e9acb63f1
|
@ -166,7 +166,7 @@ var _ = SIGDescribe("Pods Extended", func() {
|
||||||
deleted := false
|
deleted := false
|
||||||
timeout := false
|
timeout := false
|
||||||
var lastPod *v1.Pod
|
var lastPod *v1.Pod
|
||||||
timer := time.After(1 * time.Minute)
|
timer := time.After(2 * time.Minute)
|
||||||
for !deleted && !timeout {
|
for !deleted && !timeout {
|
||||||
select {
|
select {
|
||||||
case event, _ := <-w.ResultChan():
|
case event, _ := <-w.ResultChan():
|
||||||
|
|
Loading…
Reference in New Issue