Skip to content

Commit

Permalink
[JENKINS-10592] fixing cosmetic log problem
Browse files Browse the repository at this point in the history
the log would always output '0' for the changeset number from the parent job when running a matrix build. it'll should now output the value that's actually used
  • Loading branch information
rpetti committed Aug 11, 2011
1 parent 03595c0 commit 4850a5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/perforce/PerforceSCM.java
Expand Up @@ -762,7 +762,7 @@ private synchronized int getOrSetMatrixChangeSet(AbstractBuild build, Depot depo
int parentChange = getLastChange(parentBuild);
if (parentChange > 0) {
//use existing changeset from parent
log.println("Latest change from parent is: "+Integer.toString(lastChange));
log.println("Latest change from parent is: "+Integer.toString(parentChange));
lastChange = parentChange;
} else {
//no changeset on parent, set it for other
Expand Down

0 comments on commit 4850a5a

Please sign in to comment.