File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
test/integration/framework Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -207,6 +207,14 @@ func EtcdMain(tests func() int) {
207
207
// Both names occurred in practice.
208
208
goleak .IgnoreTopFunction ("k8s.io/kubernetes/vendor/gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun" ),
209
209
goleak .IgnoreTopFunction ("gopkg.in/natefinch/lumberjack%2ev2.(*Logger).millRun" ),
210
+ // If there is an error during connection shutdown, SPDY keeps a
211
+ // goroutine around for ten minutes, which gets reported as a leak
212
+ // (the goroutine is cleaned up after the ten minutes).
213
+ //
214
+ // https://github.com/kubernetes/kubernetes/blob/master/vendor/github.com/moby/spdystream/connection.go#L732-L744
215
+ //
216
+ // Ignore this reported leak.
217
+ goleak .IgnoreTopFunction ("github.com/moby/spdystream.(*Connection).shutdown" ),
210
218
)
211
219
212
220
stop , err := startEtcd (nil )
You can’t perform that action at this time.
0 commit comments