Skip to content

Commit

Permalink
Merge branch 'main' into banner-on-es-exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Abhishek332 authored Feb 12, 2024
2 parents 8732a5f + aaa649a commit 116259f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bootstrap/openmetadata-ops.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ if [ ${debug} ] ; then
echo $LIBS_DIR
fi
if [ -d "${LIBS_DIR}" ]; then
# First, add collate-service jar to the classpath.
# This is required for cases where we override classes from dependencies.
for file in "${LIBS_DIR}"collate-service-*.jar;
do
CLASSPATH="$CLASSPATH":"$file"
done
# Then, add the rest of the libraries
for file in "${LIBS_DIR}"*.jar;
do
CLASSPATH="$CLASSPATH":"$file"
Expand Down

0 comments on commit 116259f

Please sign in to comment.