You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by mo...@apache.org on 2022/06/30 10:03:24 UTC

[doris] 09/13: [hotfix](dev-1.0.1) modify stop_be and disable meta_tool build by default

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

morningman pushed a commit to branch dev-1.0.1
in repository https://gitbox.apache.org/repos/asf/doris.git

commit 7caa1eb6abc342b1ee6caddffdc7bf8bd72af7d2
Author: morningman <mo...@163.com>
AuthorDate: Wed Jun 29 15:00:30 2022 +0800

    [hotfix](dev-1.0.1) modify stop_be and disable meta_tool build by default
---
 bin/stop_be.sh | 2 +-
 build.sh       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/stop_be.sh b/bin/stop_be.sh
index 2ca1b47124..d791fb9ff2 100755
--- a/bin/stop_be.sh
+++ b/bin/stop_be.sh
@@ -35,7 +35,7 @@ pidfile=$PID_DIR/be.pid
 if [ -f $pidfile ]; then
     pid=`cat $pidfile`
     pidcomm=`ps -p $pid -o comm=`
-    if [ "doris_be"x != "$pidcomm"x ]; then
+    if [ "doris_be"x != "$pidcomm"x -a "palo_be"x != "$pidcomm"x ]; then
         echo "ERROR: pid process may not be be. "
         exit 1
     fi
diff --git a/build.sh b/build.sh
index 6441dab50f..7d1071fd19 100755
--- a/build.sh
+++ b/build.sh
@@ -57,7 +57,7 @@ Usage: $0 <options>
 
   Environment variables:
     USE_AVX2            If the CPU does not support AVX2 instruction set, please set USE_AVX2=0. Default is ON.
-    BUILD_META_TOOL     If set BUILD_META_TOOL=OFF, the output meta_tools binaries will not be compiled. Default is ON.
+    BUILD_META_TOOL     If set BUILD_META_TOOL=OFF, the output meta_tools binaries will not be compiled. Default is OFF.
     STRIP_DEBUG_INFO    If set STRIP_DEBUG_INFO=ON, the debug information in the compiled binaries will be stored separately in the 'be/lib/debug_info' directory. Default is OFF.
 
   Eg.


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org