Navigation Menu

Skip to content

Commit

Permalink
[JENKINS-49642] Fix proxy view recursion
Browse files Browse the repository at this point in the history
(cherry picked from commit 9054e22)
  • Loading branch information
daniel-beck authored and olivergondza committed Mar 23, 2018
1 parent 805a7ab commit ff59e4b
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 ff59e4b

Please sign in to comment.