Skip to content

Commit

Permalink
fix split be_entry_point FE-Name issue
Browse files Browse the repository at this point in the history
  • Loading branch information
FreeOnePlus committed Dec 11, 2024
1 parent 0015263 commit 7056f09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/runtime/be/resource/entry_point.sh
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ get_doris_args() {
for i in "${feServerArray[@]}"; do
val=${i}
val=${val// /}
tmpFeName=$(echo "${val}" | awk -F ':' '{ sub(/fe/, ""); sub(/ /, ""); print$1}')
tmpFeName=$(echo "${val}" | awk -F ':' '{ sub(/ /, ""); sub(/ /, ""); print$1}')
tmpFeIp=$(echo "${val}" | awk -F ':' '{ sub(/ /, ""); print$2}')
tmpFeEditLogPort=$(echo "${val}" | awk -F ':' '{ sub(/ /, ""); print$3}')
check_arg "TMP_FE_NAME" $tmpFeName
Expand Down

0 comments on commit 7056f09

Please sign in to comment.