Details
-
Type:
Bug
-
Status: Closed (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Component/s: subversion-plugin
-
Labels:
-
Similar Issues:
Description
Different values selected for 'List Subversion Tags' parameters are not considered in determining parameter equality.
ListSubversionTagsParameterValue needs to implement hashCode() and equals() properly.
Attachments
Issue Links
- links to
Code changed in jenkins
User: Daniel Beck
Path:
src/main/java/hudson/scm/listtagsparameter/ListSubversionTagsParameterValue.java
http://jenkins-ci.org/commit/subversion-plugin/2dec2d0978ea2e309fe962be786a6c4ec92417b8
Log:
[FIXED JENKINS-18534] equals()/hashCode() for parameter value
The default implementation considers parameters with the same name
to be identical, resulting in queue items being collapsed.
With this change, different values for a parameter will result in
different builds.