Skip to content

Commit

Permalink
Merge pull request #27 from jacekkowalczyk82/master
Browse files Browse the repository at this point in the history
proposed solution for issue JENKINS-19015
  • Loading branch information
hagzag committed Aug 15, 2013
2 parents c5647ef + e52309a commit f9336d9
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -31,6 +31,7 @@
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
Expand Down Expand Up @@ -139,6 +140,8 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher,
break;
} catch (ExecutionException e) {
failed = true;
} catch (CancellationException e) {
failed = true;
}
} else if (project.isBuilding()) {
addSubBuild(multiJobBuild, thisProject,
Expand Down

0 comments on commit f9336d9

Please sign in to comment.