mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
master: changing 301 to 308 on redirect to volume servers
fix https://github.com/chrislusf/seaweedfs/issues/1454
This commit is contained in:
parent
47b3f932e4
commit
b183ae54b5
|
@ -110,7 +110,7 @@ func (ms *MasterServer) redirectHandler(w http.ResponseWriter, r *http.Request)
|
||||||
} else {
|
} else {
|
||||||
url = util.NormalizeUrl(loc.PublicUrl) + r.URL.Path
|
url = util.NormalizeUrl(loc.PublicUrl) + r.URL.Path
|
||||||
}
|
}
|
||||||
http.Redirect(w, r, url, http.StatusMovedPermanently)
|
http.Redirect(w, r, url, http.StatusPermanentRedirect)
|
||||||
} else {
|
} else {
|
||||||
writeJsonError(w, r, http.StatusNotFound, fmt.Errorf("volume id %s not found: %s", vid, location.Error))
|
writeJsonError(w, r, http.StatusNotFound, fmt.Errorf("volume id %s not found: %s", vid, location.Error))
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue