Remove trailing slash in client api proxy (#1163)
Signed-off-by: Ashley Nelson <amn@fantashley.com>main
parent
46de400aa0
commit
c2d34422d6
|
@ -58,9 +58,8 @@ var (
|
||||||
)
|
)
|
||||||
|
|
||||||
func makeProxy(targetURL string) (*httputil.ReverseProxy, error) {
|
func makeProxy(targetURL string) (*httputil.ReverseProxy, error) {
|
||||||
if !strings.HasSuffix(targetURL, "/") {
|
targetURL = strings.TrimSuffix(targetURL, "/")
|
||||||
targetURL += "/"
|
|
||||||
}
|
|
||||||
// Check that we can parse the URL.
|
// Check that we can parse the URL.
|
||||||
_, err := url.Parse(targetURL)
|
_, err := url.Parse(targetURL)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue