[JIRA] [repo] (JENKINS-17574) Branch used by manifest is incorrectly compared to generate changelogs

2013-11-19 Thread a...@exys.org (JIRA)















































Arvid E.P
 resolved  JENKINS-17574 as Fixed


Branch used by manifest is incorrectly compared to generate changelogs
















should be fixed in 1.6





Change By:


Arvid E.P
(19/Nov/13 8:45 PM)




Status:


Open
Resolved





Resolution:


Fixed



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


[JIRA] [repo] (JENKINS-17574) Branch used by manifest is incorrectly compared to generate changelogs

2013-04-11 Thread yves-marie.mor...@parrot.com (JIRA)














































Yves-Marie Morgan
 created  JENKINS-17574


Branch used by manifest is incorrectly compared to generate changelogs















Issue Type:


Bug



Affects Versions:


current



Assignee:


Unassigned


Components:


repo



Created:


11/Apr/13 8:59 AM



Description:


When not using the default value for manifest branch, the method getLastState in class RepoScm does not retrieve a valid last state. This leads to an empty changelog.

This is due to the string comparison :
if (lastState != null  lastState.getBranch() == manifestBranch)

It does not work unless branch is 'null'.

Something like that works better :
if (lastState != null
 ((lastState.getBranch() == null  manifestBranch == null)


 (lastState.getBranch().equals(manifestBranch {






Project:


Jenkins



Priority:


Minor



Reporter:


Yves-Marie Morgan

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.