Resolution
This is most of the times due a misconfiguration on the haproxy or load balancer.
Use the following script below to check that:
-
hyperlinkMatchesCurrentPage works fine on Jenkins core
-
The Url is right so there are not any double slash
//
or incorrect characters.
import org.kohsuke.stapler.Stapler; def jenkins = jenkins.model.Jenkins.getInstance(); h = new hudson.Functions(); String url = Stapler.getCurrentRequest().getRequestURL().toString(); url = java.net.URLDecoder.decode(url,"UTF-8"); if (url.endsWith("/")) url = url.substring(0, url.length() - 1); println "url = " + url; println "hyperlinkMatchesCurrentPage work? = " + h.hyperlinkMatchesCurrentPage("/script")
This article is part of our Knowledge Base and is provided for guidance-based purposes only. The solutions or workarounds described here are not officially supported by CloudBees and may not be applicable in all environments. Use at your own discretion, and test changes in a safe environment before applying them to production systems.