-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Blocker
-
Component/s: bitbucket-pullrequest-builder-plugin
The bitbucketpullrequestbuilder plugin uses following code to get the Jenkins url:
{{JenkinsLocationConfiguration globalConfig = new JenkinsLocationConfiguration();}}
String rootUrl = globalConfig.getUrl();
Â
This no longer works. It should be:
{{JenkinsLocationConfiguration globalConfig = JenkinsLocationConfiguration.get();}}
String rootUrl = globalConfig.getUrl();
Â