From 391e41c4420f9fa841461c7f495ac78afa912fc7 Mon Sep 17 00:00:00 2001 From: Easwar Swaminathan Date: Wed, 12 May 2021 15:56:20 -0700 Subject: [PATCH] xds: revert a workaround made in #4413 --- xds/internal/test/xds_integration_test.go | 5 ----- 1 file changed, 5 deletions(-) diff --git a/xds/internal/test/xds_integration_test.go b/xds/internal/test/xds_integration_test.go index c2bb6bc18f67..a41fec929762 100644 --- a/xds/internal/test/xds_integration_test.go +++ b/xds/internal/test/xds_integration_test.go @@ -83,11 +83,6 @@ func TestMain(m *testing.M) { // spawns the management server and is blocked on the call to `Serve()`. leakcheck.RegisterIgnoreGoroutine("e2e.StartManagementServer") - // Remove this once https://github.com/envoyproxy/go-control-plane/pull/430 - // is merged. For more information about this goroutine leak, see: - // https://github.com/envoyproxy/go-control-plane/issues/429. - leakcheck.RegisterIgnoreGoroutine("(*server).StreamHandler") - cancel, err := setupManagementServer() if err != nil { log.Printf("setupManagementServer() failed: %v", err)