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
(cherry picked from commit d8076e9)
  • Loading branch information
mrcarlosrendon authored and olivergondza committed May 25, 2016
1 parent d53cab3 commit 02725ad
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 @@ -2394,7 +2394,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 02725ad

Please sign in to comment.