diff --git a/storage.go b/storage.go index c3702901..62b1493b 100644 --- a/storage.go +++ b/storage.go @@ -27,7 +27,7 @@ import ( func openIndexStorage(ctx context.Context, where string) (ReaderAtCloser, error) { where = strings.TrimSpace(where) if strings.HasPrefix(where, "http://") || strings.HasPrefix(where, "https://") { - klog.Infof("opening index file from %q as HTTP remote file", where) + klog.Infof("opening file from %q as HTTP remote file", where) rac, err := remoteHTTPFileAsIoReaderAt(ctx, where) if err != nil { return nil, fmt.Errorf("failed to open index file: %w", err)