Skip to content

Commit

Permalink
Fix JENKINS-8642
Browse files Browse the repository at this point in the history
Changed defaults for the Failing, Still Failing, Unstable and Still Unstable triggers.
  • Loading branch information
slide committed Feb 2, 2013
1 parent e8d34ec commit e46a540
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
Expand Up @@ -737,7 +737,7 @@ public static final class DescriptorImpl
}

public MatrixAggregator createAggregator(MatrixBuild matrixbuild,
Launcher launcher, BuildListener buildlistener) {
Launcher launcher, BuildListener buildlistener) {
return new MatrixAggregator(matrixbuild, launcher, buildlistener) {
@Override
public boolean endBuild() throws InterruptedException, IOException {
Expand All @@ -753,14 +753,13 @@ public boolean endBuild() throws InterruptedException, IOException {

@Override
public boolean startBuild() throws InterruptedException,IOException {
LOGGER.log(Level.FINER,"end build of " + this.build.getDisplayName());
LOGGER.log(Level.FINER,"end build of " + this.build.getDisplayName());
// Will be run by parent so we check if needed to be executed by parent
if (getMatrixTriggerMode().forParent) {
return ExtendedEmailPublisher.this._perform(this.build, this.listener, true);
}
return true;
}

};
}
}
}
Expand Up @@ -55,6 +55,6 @@ public boolean getDefaultSendToDevs() {

@Override
public boolean getDefaultSendToList() {
return true;
return false;
}
}
Expand Up @@ -60,6 +60,6 @@ public boolean getDefaultSendToDevs() {

@Override
public boolean getDefaultSendToList() {
return false;
return true;
}
}
Expand Up @@ -59,6 +59,6 @@ public boolean getDefaultSendToDevs() {

@Override
public boolean getDefaultSendToList() {
return false;
return true;
}
}
Expand Up @@ -52,6 +52,6 @@ public boolean getDefaultSendToDevs() {

@Override
public boolean getDefaultSendToList() {
return true;
return false;
}
}

0 comments on commit e46a540

Please sign in to comment.