Skip to content

Commit

Permalink
proposed solution for issue JENKINS-19015
Browse files Browse the repository at this point in the history
  • Loading branch information
JacekKowalczyk-TomTom committed Aug 2, 2013
1 parent 48c18f7 commit e52309a
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -32,6 +32,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;

Expand Down Expand Up @@ -142,6 +143,8 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher,
break;
} catch (ExecutionException e) {
failed = true;
} catch (CancellationException e) {
failed = true;
}
} else if (project.isBuilding()) {
addSubBuild(thisBuild, thisProject,
Expand Down

0 comments on commit e52309a

Please sign in to comment.