From 9ecbb0ae05d1e61b33c0dc67ce2bd4ed76434063 Mon Sep 17 00:00:00 2001 From: Isaac Hollander McCreery Date: Thu, 21 Apr 2016 13:19:05 -0700 Subject: [PATCH] s/testDuringUpgrade/testDuringDisruption --- test/e2e/cluster_upgrade.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/e2e/cluster_upgrade.go b/test/e2e/cluster_upgrade.go index 3eb94ab8587..2a31c6e5c9b 100644 --- a/test/e2e/cluster_upgrade.go +++ b/test/e2e/cluster_upgrade.go @@ -265,11 +265,11 @@ func testServiceRemainsUp(f *framework.Framework, sem *chaosmonkey.Semaphore) { testService(f, sem, true) } -// testService is a helper for testServiceUpBeforeAndAfter and testServiceRemainsUp with a flag for testDuringUpgrade +// testService is a helper for testServiceUpBeforeAndAfter and testServiceRemainsUp with a flag for testDuringDisruption // // TODO(ihmccreery) remove this abstraction once testServiceUpBeforeAndAfter is no longer needed, because node upgrades // maintain a responsive service. -func testService(f *framework.Framework, sem *chaosmonkey.Semaphore, testDuringUpgrade bool) { +func testService(f *framework.Framework, sem *chaosmonkey.Semaphore, testDuringDisruption bool) { // Setup serviceName := "service-test" @@ -300,7 +300,7 @@ func testService(f *framework.Framework, sem *chaosmonkey.Semaphore, testDuringU sem.Ready() - if testDuringUpgrade { + if testDuringDisruption { // Continuous validation wait.Until(func() { By("hitting the pod through the service's LoadBalancer")