-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix the NPE issue in ListExperimentsAPI #1030
Conversation
Signed-off-by: saakhan <[email protected]>
Signed-off-by: Saad Khan <[email protected]>
836b8e0
to
fe99cb7
Compare
@@ -174,7 +174,7 @@ if [ "${exit_code}" -ne 0 ]; then | |||
echo "Fault tolerant test failed! Check the log for details" | tee -a ${LOG} | |||
exit 1 | |||
else | |||
if [[ $(grep -i "error\|exception" ${KRUIZE_POD_LOG_BEFORE}) || $(grep -i "error\|exception" ${KRUIZE_POD_LOG_AFTER}) ]]; then | |||
if [[ $(grep -i "ERROR" ${KRUIZE_POD_LOG_BEFORE}) || $(grep -i "error\|exception" ${KRUIZE_POD_LOG_AFTER}) ]]; then |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@khansaad - Why has this been changed?
With fault tolerant test I see such messages as shown below in the pod log, these were not seen earlier, can you check.
|
Signed-off-by: Saad Khan <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
This PR fixes #908