Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
924060929 committed May 17, 2024
1 parent 6105fc0 commit 225393f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/profile_fe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ if [[ ! -x "${JAVA}" ]]; then
fi

FE_PID=$(jps | grep DorisFE | awk '{print $1}')
if [[ -z "$FE_PID" ]]; then
if [[ -z "${FE_PID}" ]]; then
echo "DorisFe not started"
exit 1
fi
echo "DorisFE pid: $FE_PID"
echo "DorisFE pid: ${FE_PID}"

mkdir -p "${DORIS_HOME}/log"
NOW=$(date +'%Y%m%d%H%M%S')
Expand Down

0 comments on commit 225393f

Please sign in to comment.