Finish updating tests for now

This commit is contained in:
Matthew Holt 2021-02-08 15:12:37 -07:00
parent 9fe12929b4
commit 509e7ecf8a
No known key found for this signature in database
GPG key ID: 2A349DD577D586A5
2 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ func connectAndGetViaProxy(targetHost, resource, proxyAddr, httpTargetVer, proxy
} else {
req.Host = targetHost
}
req.URL, err = url.Parse("https://" + req.Host)
req.URL, err = url.Parse("https://" + req.Host + "/") // TODO: appending "/" causes file server to NOT issue redirect...
if err != nil {
return nil, err
}