Skip to content
Snippets Groups Projects
Commit 5817d34c authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible system health: detect another case of job failure due to jenkins shutdown

parent eb6ccec5
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ for JOB_NAME in $(ls -1d reproducible_* | sort ) ; do
small_note "job timed out"
elif $(tail -1 $LOG | grep -q "Finished: ABORTED") ; then
small_note "job was aborted"
elif $(grep -q "Caused: hudson.remoting.ChannelClosedException" $LOG) ; then
elif $(grep -E -q "Caused: hudson.remoting.(ChannelClosedException|RequestAbortedExceptioned)" $LOG) ; then
small_note "jenkins shut down while job was running"
elif $(grep -q "java.io.IOException: No space left on device" $LOG) ; then
small_note "diskspace issue on main jenkins host"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment