This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new d7e032bc38 Modify the startup script and print the log without using
the --daemon parameter. (#12218)
d7e032bc38 is described below
commit d7e032bc386ba5a0a9955a912ff368640502f6b2
Author: Yankee24 <[email protected]>
AuthorDate: Wed Aug 31 14:36:14 2022 +0800
Modify the startup script and print the log without using the --daemon
parameter. (#12218)
---
fs_brokers/apache_hdfs_broker/bin/start_broker.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs_brokers/apache_hdfs_broker/bin/start_broker.sh
b/fs_brokers/apache_hdfs_broker/bin/start_broker.sh
index c6e0e8fb63..59be0bfdbe 100755
--- a/fs_brokers/apache_hdfs_broker/bin/start_broker.sh
+++ b/fs_brokers/apache_hdfs_broker/bin/start_broker.sh
@@ -110,7 +110,7 @@ date >>"${BROKER_LOG_DIR}/apache_hdfs_broker.out"
if [[ ${RUN_DAEMON} -eq 1 ]]; then
nohup ${LIMIT:+${LIMIT}} "${JAVA}" ${JAVA_OPTS:+${JAVA_OPTS}}
org.apache.doris.broker.hdfs.BrokerBootstrap "$@"
>>"${BROKER_LOG_DIR}/apache_hdfs_broker.out" 2>&1 </dev/null &
else
- ${LIMIT:+${LIMIT}} "${JAVA}" ${JAVA_OPTS:+${JAVA_OPTS}}
org.apache.doris.broker.hdfs.BrokerBootstrap "$@"
>>"${BROKER_LOG_DIR}/apache_hdfs_broker.out" 2>&1 </dev/null
+ ${LIMIT:+${LIMIT}} "${JAVA}" ${JAVA_OPTS:+${JAVA_OPTS}}
org.apache.doris.broker.hdfs.BrokerBootstrap "$@" 2>&1 </dev/null
fi
echo $! >"${pidfile}"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]