We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328614e commit 7fd8516Copy full SHA for 7fd8516
qa/L0_lifecycle/test.sh
@@ -1057,6 +1057,12 @@ if [ "$SERVER_PID" != "0" ]; then
1057
kill $SERVER_PID
1058
wait $SERVER_PID
1059
fi
1060
+# check server log for the error messages to make sure they're printed
1061
+if [ `grep -c "model not found in any model repository" $SERVER_LOG` == "0" ]; then
1062
+ echo -e "\n***\n*** Server log ${SERVER_LOG} did not print model load failure for non-existent model\n***"
1063
+ echo -e "\n***\n*** Test Failed\n***"
1064
+ RET=1
1065
+fi
1066
1067
LOG_IDX=$((LOG_IDX+1))
1068
0 commit comments