This is an automated email from the ASF dual-hosted git repository.
adonisling 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 f21508baec [chore](macOS) Disable detect_container_overflow at BE
startup (#17514)
f21508baec is described below
commit f21508baecf47df678d9f7ca220a66846f9aee0e
Author: Adonis Ling <[email protected]>
AuthorDate: Wed Mar 8 10:21:45 2023 +0800
[chore](macOS) Disable detect_container_overflow at BE startup (#17514)
BE failed to start up due to container-overflow errors reported by address
sanitizer.
---
bin/start_be.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/start_be.sh b/bin/start_be.sh
index d383c25163..43faf159f0 100755
--- a/bin/start_be.sh
+++ b/bin/start_be.sh
@@ -187,7 +187,7 @@ if [[ "${RUN_IN_AWS}" -eq 0 ]]; then
fi
## set asan and ubsan env to generate core file
-export
ASAN_OPTIONS=symbolize=1:abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1
+export
ASAN_OPTIONS=symbolize=1:abort_on_error=1:disable_coredump=0:unmap_shadow_on_exit=1:detect_container_overflow=0
export UBSAN_OPTIONS=print_stacktrace=1
## set TCMALLOC_HEAP_LIMIT_MB to limit memory used by tcmalloc
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]