Skip to content

Commit

Permalink
Merge pull request apache#375 from markus-h/webinterface_failed_jobs-pr
Browse files Browse the repository at this point in the history
Bugfix for webinterface: Failed jobs don't disappear
  • Loading branch information
Stephan Ewen committed Jan 7, 2014
2 parents e5d1fed + 092a868 commit f3c667f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ public void run() {

// Only remove jobs from the list which have stopped running
if (jobStatus != JobStatus.FINISHED && jobStatus != JobStatus.CANCELED
&& jobStatus != JobStatus.FINISHED) {
&& jobStatus != JobStatus.FAILED) {
continue;
}

Expand Down

0 comments on commit f3c667f

Please sign in to comment.