Skip to content

Commit

Permalink
Fix RSS id for builds in folders (#1965)
Browse files Browse the repository at this point in the history
[JENKINS-34767] - Prevent RSS ID collisions for items with same name in different folders
  • Loading branch information
mrcarlosrendon authored and oleg-nenashev committed May 12, 2016
1 parent 4bab363 commit d8076e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/hudson/model/Run.java
Expand Up @@ -2391,7 +2391,7 @@ public String getEntryUrl(Run entry) {
public String getEntryID(Run entry) {
return "tag:" + "hudson.dev.java.net,"
+ entry.getTimestamp().get(Calendar.YEAR) + ":"
+ entry.getParent().getName()+':'+entry.getId();
+ entry.getParent().getFullName()+':'+entry.getId();
}

public String getEntryDescription(Run entry) {
Expand Down

0 comments on commit d8076e9

Please sign in to comment.