|
@ -3,6 +3,7 @@ package filesys |
|
|
import ( |
|
|
import ( |
|
|
"context" |
|
|
"context" |
|
|
"fmt" |
|
|
"fmt" |
|
|
|
|
|
"io" |
|
|
"math" |
|
|
"math" |
|
|
"net/http" |
|
|
"net/http" |
|
|
"time" |
|
|
"time" |
|
@ -98,6 +99,10 @@ func (fh *FileHandle) readFromChunks(buff []byte, offset int64) (int64, error) { |
|
|
|
|
|
|
|
|
totalRead, err := fh.f.reader.ReadAt(buff, offset) |
|
|
totalRead, err := fh.f.reader.ReadAt(buff, offset) |
|
|
|
|
|
|
|
|
|
|
|
if err == io.EOF { |
|
|
|
|
|
err = nil |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
if err != nil { |
|
|
if err != nil { |
|
|
glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err) |
|
|
glog.Errorf("file handle read %s: %v", fh.f.fullpath(), err) |
|
|
} |
|
|
} |
|
|