Skip to content

Commit

Permalink
Further fixes for using with CloudBees Folder plugin https://issues.j…
Browse files Browse the repository at this point in the history
  • Loading branch information
Brantone committed Apr 8, 2015
1 parent 11bc1c8 commit 7b58072
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -42,7 +42,7 @@ public String getProjectName() {

public AbstractProject<?, ?> getProject() {
return (AbstractProject<?, ?>) Hudson.getInstance()
.getItem(projectName);
.getItemByFullName(projectName);
}

public BuildStepMonitor getRequiredMonitorService() {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/templateproject/ProxySCM.java
Expand Up @@ -43,7 +43,7 @@ public String getProjectName() {

public AbstractProject<?, ?> getProject() {
return (AbstractProject<?, ?>) Hudson.getInstance()
.getItem(projectName);
.getItemByFullName(projectName);
}

@Override
Expand Down

0 comments on commit 7b58072

Please sign in to comment.