Skip to content

Commit

Permalink
Merge pull request #3316 from daniel-beck/JENKINS-49642
Browse files Browse the repository at this point in the history
[JENKINS-49642] Fix proxy view recursion
  • Loading branch information
oleg-nenashev committed Mar 4, 2018
2 parents b0c5a86 + 9054e22 commit 67a6103
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/main/java/hudson/model/ProxyView.java
Expand Up @@ -91,6 +91,11 @@ public boolean contains(TopLevelItem item) {
return getProxiedView().contains(item);
}

@Override
public TopLevelItem getItem(String name) {
return getProxiedView().getItem(name);
}

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
Expand Down

0 comments on commit 67a6103

Please sign in to comment.