From: Tom Clegg Date: Fri, 12 Oct 2018 18:56:51 +0000 (-0400) Subject: 14285: Add keep-balance to health aggregator test stub. X-Git-Tag: 1.3.0~83^2~3 X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/2e50177344ad50dc5d6c599445c272e200636af8?ds=sidebyside 14285: Add keep-balance to health aggregator test stub. Arvados-DCO-1.1-Signed-off-by: Tom Clegg --- diff --git a/sdk/go/health/aggregator_test.go b/sdk/go/health/aggregator_test.go index a96ed136cb..cb47c9e670 100644 --- a/sdk/go/health/aggregator_test.go +++ b/sdk/go/health/aggregator_test.go @@ -108,6 +108,7 @@ func (s *AggregatorSuite) TestHealthy(c *check.C) { defer srv.Close() s.handler.Config.Clusters["zzzzz"].NodeProfiles["localhost"] = arvados.NodeProfile{ Controller: arvados.SystemServiceInstance{Listen: listen}, + Keepbalance: arvados.SystemServiceInstance{Listen: listen}, Keepproxy: arvados.SystemServiceInstance{Listen: listen}, Keepstore: arvados.SystemServiceInstance{Listen: listen}, Keepweb: arvados.SystemServiceInstance{Listen: listen}, @@ -132,6 +133,7 @@ func (s *AggregatorSuite) TestHealthyAndUnhealthy(c *check.C) { defer srvU.Close() s.handler.Config.Clusters["zzzzz"].NodeProfiles["localhost"] = arvados.NodeProfile{ Controller: arvados.SystemServiceInstance{Listen: listenH}, + Keepbalance: arvados.SystemServiceInstance{Listen: listenH}, Keepproxy: arvados.SystemServiceInstance{Listen: listenH}, Keepstore: arvados.SystemServiceInstance{Listen: listenH}, Keepweb: arvados.SystemServiceInstance{Listen: listenH},