From dc77d7ffe311f78f2e577572d984af3c0a8df82b Mon Sep 17 00:00:00 2001 From: Easwar Swaminathan Date: Wed, 12 May 2021 18:03:52 -0700 Subject: [PATCH] xds: revert a workaround made in #4413 (#4428) --- 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 c2bb6bc18f6..a41fec92976 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)