diff options
author | 2017-11-13 22:08:26 -0500 | |
---|---|---|
committer | 2017-11-13 22:08:26 -0500 | |
commit | c9ddb929138a39ee22be8433074416575346734b (patch) | |
tree | b8b7b7039e7f5f55337107ddbb37e6dacf63f6f6 | |
parent | 790e29d91e926e14862ad35a2fd0c791aba628d3 (diff) |
Bugfix for 47103
Change-Id: I013e19ddcceac32e964b6a930edd653a552ca83d
Signed-off-by: Zhijiang Hu <hu.zhijiang@zte.com.cn>
-rwxr-xr-x | deploy/check_openstack_progress.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy/check_openstack_progress.sh b/deploy/check_openstack_progress.sh index c4ba5978..1aa3570a 100755 --- a/deploy/check_openstack_progress.sh +++ b/deploy/check_openstack_progress.sh @@ -73,7 +73,7 @@ count=0 while true; do if [ $count -gt $maxcount ]; then echo "It took too long to install openstack, exit." - dump_log $cluster_id + dump_log_for_cluster $cluster_id exit 1 fi count=$[count + 1] @@ -86,7 +86,7 @@ while true; do break elif [ $openstack_install_failed -gt 0 ]; then echo "openstack installation failed ..." - dump_log $cluster_id + dump_log_for_cluster $cluster_id exit 1 else # get 'Role_progress' column |