Skip to content

Commit

Permalink
[fix](multi-catalog)the classpath of custom lib should put back of fe…
Browse files Browse the repository at this point in the history
… jars (apache#35986)

see apache#34990
user class maybe use some tripartite lib, we should put them back of fe
jars to avoid conflicts
  • Loading branch information
wsjz authored and weixingyu12 committed Jun 11, 2024
1 parent 668cf27 commit 101c683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/start_fe.sh
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ done
# add custome_libs to CLASSPATH
if [[ -d "${DORIS_HOME}/custom_lib" ]]; then
for f in "${DORIS_HOME}/custom_lib"/*.jar; do
CLASSPATH="${f}:${CLASSPATH}"
CLASSPATH="${CLASSPATH}:${f}"
done
fi

Expand Down

0 comments on commit 101c683

Please sign in to comment.