Skip to content

Commit

Permalink
PSQLADM-125 : Additional fix
Browse files Browse the repository at this point in the history
Code uses [[ -n CHECKER_PIDFILE ]] should be [[ -n $CHECKER_PIDFILE ]]
  • Loading branch information
kennt-percona committed Oct 31, 2018
1 parent 5ca14e0 commit 18e5e06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion proxysql_galera_checker
Original file line number Diff line number Diff line change
Expand Up @@ -895,7 +895,7 @@ function check_is_galera_checker_running() {
}
function cleanup_handler() {
if [[ -n CHECKER_PIDFILE ]]; then
if [[ -n $CHECKER_PIDFILE ]]; then
rm -f $CHECKER_PIDFILE
fi
}
Expand Down

0 comments on commit 18e5e06

Please sign in to comment.