You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@inlong.apache.org by do...@apache.org on 2023/09/19 09:35:25 UTC

[inlong] branch master updated: [INLONG-8936][DataProxy] The log's path for DataProxy is wrong (#8937)

This is an automated email from the ASF dual-hosted git repository.

dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git


The following commit(s) were added to refs/heads/master by this push:
     new 1cbb8699ae [INLONG-8936][DataProxy] The log's path for DataProxy is wrong (#8937)
1cbb8699ae is described below

commit 1cbb8699ae9ffa0848153f865ba01fde61c8356f
Author: Goson Zhang <46...@qq.com>
AuthorDate: Tue Sep 19 17:35:19 2023 +0800

    [INLONG-8936][DataProxy] The log's path for DataProxy is wrong (#8937)
---
 inlong-dataproxy/bin/dataproxy-ng | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/inlong-dataproxy/bin/dataproxy-ng b/inlong-dataproxy/bin/dataproxy-ng
index d04ed8f282..70a5a12abb 100755
--- a/inlong-dataproxy/bin/dataproxy-ng
+++ b/inlong-dataproxy/bin/dataproxy-ng
@@ -229,7 +229,7 @@ run_flume() {
     $EXEC $JAVA_HOME/bin/java $JAVA_OPTS -javaagent:${OTEL_AGENT} -cp "$DATAPROXY_CLASSPATH" \
           -Djava.library.path=$FLUME_JAVA_LIBRARY_PATH "$FLUME_APPLICATION_CLASS" $*
   else
-    $EXEC $JAVA_HOME/bin/java -cp "$DATAPROXY_CLASSPATH" \
+    $EXEC $JAVA_HOME/bin/java $JAVA_OPTS -cp "$DATAPROXY_CLASSPATH" \
           -Djava.library.path=$FLUME_JAVA_LIBRARY_PATH "$FLUME_APPLICATION_CLASS" $*
   fi
 }