use constants for wait periods/limits in code
Project: http://git-wip-us.apache.org/repos/asf/brooklyn-library/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-library/commit/8496ba1a Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-library/tree/8496ba1a Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-library/diff/8496ba1a Branch: refs/heads/0.7.0-incubating Commit: 8496ba1a8d8a761a28f2e2677d1fad798d5b8fcb Parents: 703324c Author: Alex Heneveld <[email protected]> Authored: Tue Jun 23 23:36:06 2015 -0700 Committer: Alex Heneveld <[email protected]> Committed: Wed Jun 24 01:04:24 2015 -0700 ---------------------------------------------------------------------- .../brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-library/blob/8496ba1a/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java ---------------------------------------------------------------------- diff --git a/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java b/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java index 129bf3d..6dd97d6 100644 --- a/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java +++ b/software/nosql/src/main/java/brooklyn/entity/nosql/couchbase/CouchbaseNodeSshDriver.java @@ -344,7 +344,7 @@ public class CouchbaseNodeSshDriver extends AbstractSoftwareProcessSshDriver imp // wait until the re-balance is started // (if it's quick, this might miss it, but it will only block for 30s if so) Repeater.create() - .backoff(Duration.millis(10), 2, Duration.millis(500)) + .backoff(Repeater.DEFAULT_REAL_QUICK_PERIOD, 2, Duration.millis(500)) .limitTimeTo(Duration.THIRTY_SECONDS) .until(new Callable<Boolean>() { @Override
