Repository: incubator-slider Updated Branches: refs/heads/develop cf00b9a5d -> 7b5481b38
SLIDER-82 catch up with changed parent method Project: http://git-wip-us.apache.org/repos/asf/incubator-slider/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-slider/commit/72d1c8a9 Tree: http://git-wip-us.apache.org/repos/asf/incubator-slider/tree/72d1c8a9 Diff: http://git-wip-us.apache.org/repos/asf/incubator-slider/diff/72d1c8a9 Branch: refs/heads/develop Commit: 72d1c8a933387b38aca1f716c1532104f647e1c6 Parents: cf00b9a Author: Steve Loughran <[email protected]> Authored: Fri Nov 27 18:35:14 2015 +0000 Committer: Steve Loughran <[email protected]> Committed: Fri Nov 27 18:35:14 2015 +0000 ---------------------------------------------------------------------- .../org/apache/slider/funtest/lifecycle/DemoAASleep.groovy | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-slider/blob/72d1c8a9/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/DemoAASleep.groovy ---------------------------------------------------------------------- diff --git a/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/DemoAASleep.groovy b/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/DemoAASleep.groovy index 7d0ee46..7a8e1a6 100644 --- a/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/DemoAASleep.groovy +++ b/slider-funtest/src/test/groovy/org/apache/slider/funtest/lifecycle/DemoAASleep.groovy @@ -20,6 +20,7 @@ package org.apache.slider.funtest.lifecycle import groovy.transform.CompileStatic import groovy.util.logging.Slf4j +import org.apache.slider.api.types.NodeInformationList import org.apache.slider.core.launch.SerializedApplicationReport @CompileStatic @@ -31,8 +32,9 @@ class DemoAASleep extends AASleepIT { String name, SerializedApplicationReport appReport, int desired, - int expected) { - super.operations(name, appReport, desired, expected) + int expected, + NodeInformationList healthyNodes) { + super.operations(name, appReport, desired, expected, healthyNodes) describe("cluster is live at ${appReport.url}")
