Skip to content

Commit

Permalink
[Bugfix] Fix start.sh with config path (#518)
Browse files Browse the repository at this point in the history
  • Loading branch information
gohonsen authored Aug 8, 2024
1 parent e0e9b8b commit 8815807
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paimon-web-server/src/main/bin/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ fi

if [ "$DAEMON" = true ]; then
nohup $JAVA_HOME/bin/java $JAVA_OPTS \
-cp "$PAIMON_UI_HOME/conf:$PAIMON_UI_HOME/libs/*" \
-cp "$PAIMON_UI_HOME/config:$PAIMON_UI_HOME/libs/*" \
org.apache.paimon.web.server.PaimonWebServerApplication \
> /dev/null 2>&1 &
echo "Paimon Web Server started in daemon."
else
$JAVA_HOME/bin/java $JAVA_OPTS \
-cp "$PAIMON_UI_HOME/conf:$PAIMON_UI_HOME/libs/*" \
-cp "$PAIMON_UI_HOME/config:$PAIMON_UI_HOME/libs/*" \
org.apache.paimon.web.server.PaimonWebServerApplication
fi
fi

0 comments on commit 8815807

Please sign in to comment.