From 68bb96d0aef9b67ae3d3c090313412ed4b36a668 Mon Sep 17 00:00:00 2001 From: Walter Fender Date: Fri, 9 Feb 2018 17:24:08 -0800 Subject: [PATCH] Extend timeout to deal with pkg/master flake. Workaround for bug #59450. Related to PR #59441. Locally test runs about 90 seconds. However on the bazel-test CI the test frequently runs over 5 minutes. Extending the timeout as a work-around to ease the rerun problem. As @mikedanese notes :- The Validate calls to the vendored go-openapi library are which make the test slow: https://github.com/kubernetes/kubernetes/blob/master/pkg/master/master_openapi_test.go#L91 We should probably do more perf and send a patch to upstream. --- pkg/master/BUILD | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/master/BUILD b/pkg/master/BUILD index 586978b6db5..0b278462699 100644 --- a/pkg/master/BUILD +++ b/pkg/master/BUILD @@ -114,6 +114,7 @@ go_library( go_test( name = "go_default_test", size = "medium", + timeout = "long", srcs = [ "client_ca_hook_test.go", "controller_test.go",