We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1940e1 commit 5f95ad6Copy full SHA for 5f95ad6
xds/internal/test/xds_integration_test.go
@@ -83,6 +83,11 @@ func TestMain(m *testing.M) {
83
// spawns the management server and is blocked on the call to `Serve()`.
84
leakcheck.RegisterIgnoreGoroutine("e2e.StartManagementServer")
85
86
+ // Remove this once https://github.com/envoyproxy/go-control-plane/pull/430
87
+ // is merged. For more information about this goroutine leak, see:
88
+ // https://github.com/envoyproxy/go-control-plane/issues/429.
89
+ leakcheck.RegisterIgnoreGoroutine("(*server).StreamHandler")
90
+
91
cancel, err := setupManagementServer()
92
if err != nil {
93
log.Printf("setupManagementServer() failed: %v", err)
0 commit comments