aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/client.py
diff options
context:
space:
mode:
authorcarey.xu <carey.xuhan@huawei.com>2016-02-16 15:05:28 +0800
committercarey.xu <carey.xuhan@huawei.com>2016-02-16 15:05:28 +0800
commitfc50d4a2fac61355019a7cffbef21e96a3423fce (patch)
tree5178ac4392b2f6082f88069862c0751d6dfe6b0d /deploy/client.py
parent00ba12cbc900cb1cb38bee938544cc95583ab416 (diff)
bugfix: fix the mongodb oplog size to 10GB
JIRA: COMPASS-316 Change-Id: Ib7a6a0f9a8c06de19d0530157bbeaaf233ce169f Signed-off-by: carey.xu <carey.xuhan@huawei.com>
Diffstat (limited to 'deploy/client.py')
-rw-r--r--deploy/client.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/deploy/client.py b/deploy/client.py
index 593f9033..fc5dc729 100644
--- a/deploy/client.py
+++ b/deploy/client.py
@@ -871,11 +871,11 @@ class CompassClient(object):
(cluster_id, status, cluster_state)
)
- LOG.info("current_time=%s, deployment_timeout=%s" \
- % (current_time(), deployment_timeout))
time.sleep(5)
- if not current_time() < deployment_timeout:
+ if current_time() >= deployment_timeout:
+ LOG.info("current_time=%s, deployment_timeout=%s" \
+ % (current_time(), deployment_timeout))
raise RuntimeError("installation timeout")
try: