Skip to content

Commit

Permalink
removed "for' from error message in ReadInBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
Dabnsky committed Jun 11, 2024
1 parent 7ac582f commit b00dce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion component/file_cache/file_cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ func (fc *FileCache) ReadInBuffer(options internal.ReadInBufferOptions) (int, er

err := fc.downloadFile(options.Handle)
if err != nil {
return 0, fmt.Errorf("error downloading file for %s [%s]", options.Handle.Path, err)
return 0, fmt.Errorf("error downloading file %s [%s]", options.Handle.Path, err)
}

f := options.Handle.GetFileObject()
Expand Down

0 comments on commit b00dce9

Please sign in to comment.