This is an automated email from the ASF dual-hosted git repository.
nicholasjiang pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/paimon-webui.git
The following commit(s) were added to refs/heads/main by this push:
new 88158079 [Bugfix] Fix start.sh with config path (#518)
88158079 is described below
commit 881580796e731cf90dee66045c18b4ae1afe46c6
Author: gohonsen <[email protected]>
AuthorDate: Thu Aug 8 15:11:54 2024 +0800
[Bugfix] Fix start.sh with config path (#518)
---
paimon-web-server/src/main/bin/start.sh | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/paimon-web-server/src/main/bin/start.sh
b/paimon-web-server/src/main/bin/start.sh
index 6d513dfe..462922c5 100644
--- a/paimon-web-server/src/main/bin/start.sh
+++ b/paimon-web-server/src/main/bin/start.sh
@@ -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
\ No newline at end of file
+fi