summaryrefslogtreecommitdiffstats
path: root/ci/deploy.sh
diff options
context:
space:
mode:
authorNarinder Gupta <narinder.gupta@canonical.com>2017-08-14 16:42:21 -0500
committerNarinder Gupta <narinder.gupta@canonical.com>2017-08-15 00:33:12 -0500
commitb46de9e8a6d2a87d6e475b6ee9bf66c2c2b9761f (patch)
tree3a455bd0fa89df4cc161437c4c985069b70ebbbb /ci/deploy.sh
parent952fb13f3f3f296dfcee6082b0d15230558b19c7 (diff)
adjusting the timeout while reading status.
Change-Id: I26829677f4688e75edf607b2fcd839385523c5aa Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/deploy.sh')
-rwxr-xr-xci/deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/deploy.sh b/ci/deploy.sh
index bc146305..768f5e84 100755
--- a/ci/deploy.sh
+++ b/ci/deploy.sh
@@ -188,7 +188,7 @@ check_status() {
while [ $retval -eq 0 ]; do
if juju status | grep -q $waitstatus; then
echo -n '.'
- if [ $timeoutiter -ge 120 ]; then
+ if [ $timeoutiter -ge 180 ]; then
echo 'timed out'
retval=1
else