This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.0 by this push: new 923de4730bd [fix](multi-catalog)the classpath of custom lib should put back of fe jars (#35986) 923de4730bd is described below commit 923de4730bd4aaafdbe20551e167943099738dd5 Author: slothever <18522955+w...@users.noreply.github.com> AuthorDate: Fri Jun 7 21:15:30 2024 +0800 [fix](multi-catalog)the classpath of custom lib should put back of fe jars (#35986) see https://github.com/apache/doris/pull/34990 user class maybe use some tripartite lib, we should put them back of fe jars to avoid conflicts --- bin/start_fe.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/start_fe.sh b/bin/start_fe.sh index 1845e65f3aa..7981ccb6ff1 100755 --- a/bin/start_fe.sh +++ b/bin/start_fe.sh @@ -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 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org