Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bin/redis log message typo #476

Merged
merged 1 commit into from
Dec 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/redis-add
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ if (($# == 1)); then
exit 2
fi
log_line "SUMMARY"
log_info "create pgsql ${HOST_TYPE} ${REDIS_SELECTOR} complete!"
log_info "create redis ${HOST_TYPE} ${REDIS_SELECTOR} complete!"
exit 0
fi

Expand Down
6 changes: 3 additions & 3 deletions bin/redis-rm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -uo pipefail
#==============================================================#
# File : redis-rm
# Desc : Create Redis Cluster/Node/Instances
# Desc : Remove Redis Cluster/Node/Instances
# Ctime : 2022-12-29
# Mtime : 2023-09-14
# Path : bin/redis-rm
Expand Down Expand Up @@ -76,11 +76,11 @@ if (($# == 1)); then

if [[ $? -ne 0 ]]; then
log_line "FAILURE"
log_error "fail to create redis ${HOST_TYPE} ${REDIS_SELECTOR}"
log_error "fail to remove redis ${HOST_TYPE} ${REDIS_SELECTOR}"
exit 2
fi
log_line "SUMMARY"
log_info "create pgsql ${HOST_TYPE} ${REDIS_SELECTOR} complete!"
log_info "remove redis ${HOST_TYPE} ${REDIS_SELECTOR} complete!"
exit 0
fi

Expand Down