-
Bug
-
Resolution: Fixed
-
Minor
-
Windows 2008x64, IE, Chrome, Mozilla
util.js fails at line 145 because job.lastBuild.actions[4] is undefined (there's only 2 elements in the array at that point). quick workaround (as follows) rectifies the issue.
< if(job.lastBuild.actions[4].failCount != undefined && [...]
> if(job.lastBuild.actions[4] != undefined && job.lastBuild.actions[4].failCount != undefined [...]
[JENKINS-14379] Wall Display Plugin fails when hits the build with 'yellow' status
Resolution | New: Fixed [ 1 ] | |
Status | Original: Open [ 1 ] | New: Resolved [ 5 ] |
Workflow | Original: JNJira [ 145015 ] | New: JNJira + In-Review [ 191305 ] |
thanks for the quick fix