Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gcsfs/file.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (o *GcsFile) Seek(newOffset int64, whence int) (int64, error) {
return o.fhOffset, nil
}
log.Printf(
"WARNING: Seek behavior triggered, highly inefficent. Offset before seek is at %d\n",
"WARNING: Seek behavior triggered, highly inefficient. Offset before seek is at %d\n",
o.fhOffset,
)

Expand Down
2 changes: 1 addition & 1 deletion gcsfs/file_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ func (o *gcsFileResource) maybeCloseWriter() error {
if err != nil {
return fmt.Errorf(
"couldn't simulate a partial write; the closing (and thus"+
" the whole file write) is NOT commited to GCS. %v", err)
" the whole file write) is NOT committed to GCS. %v", err)
}
if currentFile != nil && currentFile.Remain() > 0 {
if _, err := io.Copy(o.writer, currentFile); err != nil {
Expand Down