You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@slider.apache.org by jm...@apache.org on 2014/11/14 00:08:54 UTC

incubator-slider git commit: SLIDER-649 extends test sleep times

Repository: incubator-slider
Updated Branches:
  refs/heads/develop b86360263 -> f50adbda7


SLIDER-649 extends test sleep times


Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/f50adbda
Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/f50adbda
Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/f50adbda

Branch: refs/heads/develop
Commit: f50adbda7af9347b68530c6fd2b6ebe200c7e1fb
Parents: b863602
Author: Jon Maron <jm...@hortonworks.com>
Authored: Thu Nov 13 18:08:05 2014 -0500
Committer: Jon Maron <jm...@hortonworks.com>
Committed: Thu Nov 13 18:08:05 2014 -0500

----------------------------------------------------------------------
 .../slider/agent/standalone/TestStandaloneAMRestart.groovy     | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/f50adbda/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAMRestart.groovy
----------------------------------------------------------------------
diff --git a/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAMRestart.groovy b/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAMRestart.groovy
index d8f7141..bdcf615 100644
--- a/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAMRestart.groovy
+++ b/slider-core/src/test/groovy/org/apache/slider/agent/standalone/TestStandaloneAMRestart.groovy
@@ -80,7 +80,7 @@ class TestStandaloneAMRestart extends AgentMiniClusterTestBase {
 
     // kill again & expect it to be considered a failure
     killAmAndWaitForDeath(sliderClient, iteration++, clustername)
-    sleep(20000)
+    sleep(40000)
 
     report = sliderClient.applicationReport
     assert report.finalApplicationStatus == FinalApplicationStatus.FAILED
@@ -109,8 +109,8 @@ class TestStandaloneAMRestart extends AgentMiniClusterTestBase {
         iteration,
         clustername)
     //give yarn some time to notice
-    sleep(20000)
-    waitUntilClusterLive(sliderClient, 20000)
+    sleep(40000)
+    waitUntilClusterLive(sliderClient, 40000)
     return args
   }