From 13f1ab0a4a7af32605681a2dbb75bf199afe8ff2 Mon Sep 17 00:00:00 2001 From: Marius Posta Date: Mon, 24 Jul 2023 11:45:30 -0400 Subject: [PATCH] Revert "github-pull-request-make: temporary workaround" This reverts commit 2bd61c09de2c600291d7e30f77692b66a91289d4. Informs #106920. Release note: None --- pkg/cmd/github-pull-request-make/main.go | 7 ------- 1 file changed, 7 deletions(-) diff --git a/pkg/cmd/github-pull-request-make/main.go b/pkg/cmd/github-pull-request-make/main.go index 67ba34a77be2..ce543678a304 100644 --- a/pkg/cmd/github-pull-request-make/main.go +++ b/pkg/cmd/github-pull-request-make/main.go @@ -209,13 +209,6 @@ func main() { if len(pkgs) > 0 { for name, pkg := range pkgs { - // TODO(postamar): remove this temporary workaround - // This hack was added to get #106743 over the finish line. - if strings.HasPrefix(name, "pkg/ccl/schemachangerccl") || - strings.HasPrefix(name, "pkg/sql/schemachanger") { - continue - } - // 20 minutes total seems OK, but at least 2 minutes per test. // This should be reduced. See #46941. duration := (20 * time.Minute) / time.Duration(len(pkgs))