Skip to content
Merged
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
4 changes: 2 additions & 2 deletions bin/start_fe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ if [ x"$HELPER" != x"" ]; then
HELPER="-helper $HELPER"
fi

if [ ${IMAGE_TOOL} -eq 1 ]; then
if [[ ${IMAGE_TOOL} -eq 1 ]]; then
if [ ! -z ${IMAGE_PATH} ]; then
$LIMIT $JAVA $final_java_opt org.apache.doris.PaloFe -i ${IMAGE_PATH}
else
echo "Internal Error. USE IMAGE_TOOL like : ./start_fe.sh --image image_path"
fi
elif [ ${RUN_DAEMON} -eq 1 ]; then
elif [[ ${RUN_DAEMON} -eq 1 ]]; then
nohup $LIMIT $JAVA $final_java_opt org.apache.doris.PaloFe ${HELPER} "$@" >> $LOG_DIR/fe.out 2>&1 < /dev/null &
else
$LIMIT $JAVA $final_java_opt org.apache.doris.PaloFe ${HELPER} "$@" < /dev/null
Expand Down