1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Merge pull request #543 from gaurav1086/e2e_test_fix_goroutine_leak

e2e_test: fix goroutine leak
This commit is contained in:
Kubernetes Prow Robot
2021-04-05 18:11:19 -07:00
committed by GitHub

View File

@@ -821,7 +821,7 @@ func TestDeschedulingInterval(t *testing.T) {
deschedulerPolicy := &api.DeschedulerPolicy{}
c := make(chan bool)
c := make(chan bool, 1)
go func() {
evictionPolicyGroupVersion, err := eutils.SupportEviction(s.Client)
if err != nil || len(evictionPolicyGroupVersion) == 0 {