Support redirects in gcs storage with default credentials (#4295)

This commit is contained in:
Milos Gajdos
2024-03-11 22:29:57 +00:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -785,10 +785,6 @@ func (d *driver) Delete(ctx context.Context, path string) error {
// RedirectURL returns a URL which may be used to retrieve the content stored at
// the given path, possibly using the given options.
func (d *driver) RedirectURL(r *http.Request, path string) (string, error) {
if d.privateKey == nil {
return "", nil
}
if r.Method != http.MethodGet && r.Method != http.MethodHead {
return "", nil
}