Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions operator/src/main/resources/scripts/modelInImage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -608,12 +608,11 @@ function diff_model() {
export __WLSDEPLOY_STORE_MODEL__=1
# $1 - new model, $2 original model

# no need to redirect output, -output_dir for compareModel will generate the output file
${WDT_BINDIR}/compareModel.sh -oracle_home ${ORACLE_HOME} -output_dir /tmp $1 $2 > /dev/null 2>&1
${WDT_BINDIR}/compareModel.sh -oracle_home ${ORACLE_HOME} -output_dir /tmp $1 $2 > ${WDT_OUTPUT} 2>&1
ret=$?
if [ $ret -ne 0 ]; then
trace SEVERE "WDT Compare Model failed:"
cat /tmp/compare_model_stdout
cat ${WDT_OUTPUT}
exitOrLoop
fi

Expand Down