Skip to content

Commit

Permalink
[fix](cloud) Fix cloud start.sh (apache#30135)
Browse files Browse the repository at this point in the history
  • Loading branch information
w41ter authored Jan 19, 2024
1 parent 6d2c7c0 commit 1321c92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/script/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ fi

lib_path="${DORIS_HOME}/lib"
bin="${DORIS_HOME}/lib/doris_cloud"
if ! ldd "${bin}" | grep -Ei 'libfdb_c.*not found' &>/dev/null; then
if ldd "${bin}" | grep -Ei 'libfdb_c.*not found' &>/dev/null; then
if ! command -v patchelf &>/dev/null; then
echo "patchelf is needed to launch meta_service"
exit 1
Expand Down

0 comments on commit 1321c92

Please sign in to comment.