Skip to content

Commit

Permalink
isJobResultEligible now takes into account the node name filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
fcamblor committed Sep 22, 2010
1 parent 6d27734 commit 2f47362
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ public boolean isJobResultEligible(JobBuildResult result){
boolean jobBuildEligible = true;

jobBuildEligible &= getCalculatedJobFilter().isFieldValueValid(result.getJobName());
jobBuildEligible &= getCalculatedNodeFilter().isFieldValueValid(result.getNodeName());
jobBuildEligible &= isAbortedShown() || result.getResult().getAbortedCount()!=1;
jobBuildEligible &= isFailuresShown() || result.getResult().getFailureCount()!=1;
jobBuildEligible &= isNotBuildShown() || result.getResult().getNotBuildCount()!=1;
Expand Down

0 comments on commit 2f47362

Please sign in to comment.