Update check-all.sh (#1591)

pull/1601/head
Xinwei Xiong 9 months ago committed by GitHub
parent 34ed032af1
commit f10528010b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -33,15 +33,15 @@ openim::log::info "\n# Begin to check all openim service"
# OpenIM status
# Elegant printing function
print_services_and_ports() {
local -n service_names=$1
local -n service_ports=$2
service_names=("$1[@]")
service_ports=("$2[@]")
echo "+-------------------------+----------+"
echo "| Service Name | Port |"
echo "+-------------------------+----------+"
for index in "${!service_names[@]}"; do
printf "| %-23s | %-8s |\n" "${service_names[$index]}" "${service_ports[$index]}"
for index in "${!service_names}"; do
printf "| %-23s | %-8s |\n" "${!service_names[$index]}" "${!service_ports[$index]}"
done
echo "+-------------------------+----------+"

Loading…
Cancel
Save