Skip to content

Commit

Permalink
Fix OOM lakectl FS upload bug (#8349)
Browse files Browse the repository at this point in the history
  • Loading branch information
idanovo authored Nov 7, 2024
1 parent eca3a9a commit da13042
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pkg/local/progress.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,3 +144,7 @@ func (f fileWrapper) Read(p []byte) (n int, err error) {
func (f fileWrapper) Seek(offset int64, whence int) (int64, error) {
return f.file.Seek(offset, whence)
}

func (f fileWrapper) Close() error {
return nil
}

0 comments on commit da13042

Please sign in to comment.