diff options
author | Harry Huang <huangxiangyu5@huawei.com> | 2017-03-20 10:59:42 +0800 |
---|---|---|
committer | Harry Huang <huangxiangyu5@huawei.com> | 2017-03-21 16:40:51 +0800 |
commit | f809fd6d07d3447af62297377f963e1c6e4556e3 (patch) | |
tree | 514fd3c2779f0af6a10373c9f602100d074ce364 /juju | |
parent | f1ef7f43d12751b10314a7e07c3e3ae815057a39 (diff) |
Add delay when upload csar package fail
There is occasional failure when upload csar package.
Add 10 second 10 retries to workaroud this problem.
Change-Id: I0d081699d744bc2a3f93d23fa5afea48f426beff
Signed-off-by: Harry Huang <huangxiangyu5@huawei.com>
Diffstat (limited to 'juju')
-rwxr-xr-x | juju/juju_launch.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/juju/juju_launch.sh b/juju/juju_launch.sh index 2aff57e..766ebfe 100755 --- a/juju/juju_launch.sh +++ b/juju/juju_launch.sh @@ -78,7 +78,8 @@ function juju_client_prepare() $OS_REGION_NAME: endpoint: $OS_AUTH_URL' > clouds.yaml" - local cmd1="juju add-cloud openstack clouds.yaml --replace" + local cmd1="juju remove-cloud openstack; \ + juju add-cloud openstack clouds.yaml --replace" exec_cmd_on_client $cmd1 if [[ ! $(exec_cmd_on_client "juju list-clouds | grep openstack") ]]; then |