"vscode:/vscode.git/clone" did not exist on "02478eb397aac2341ef2b8612e081a1d44e723b3"
Unverified Commit 9b53e39d authored by Jesse Gross's avatar Jesse Gross Committed by GitHub
Browse files

Merge pull request #6258 from coolljt0725/fix_typo

server/download.go: Fix a typo in log
parents 97fae2df 7b61eba4
...@@ -233,7 +233,7 @@ func (b *blobDownload) run(ctx context.Context, requestURL *url.URL, opts *regis ...@@ -233,7 +233,7 @@ func (b *blobDownload) run(ctx context.Context, requestURL *url.URL, opts *regis
newOpts.CheckRedirect = func(req *http.Request, via []*http.Request) error { newOpts.CheckRedirect = func(req *http.Request, via []*http.Request) error {
if len(via) > 10 { if len(via) > 10 {
return errors.New("maxium redirects exceeded (10) for directURL") return errors.New("maximum redirects exceeded (10) for directURL")
} }
// if the hostname is the same, allow the redirect // if the hostname is the same, allow the redirect
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment