1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-07-05 08:36:55 +02:00

detailed export

This commit is contained in:
Chris Lu 2018-11-21 15:12:47 -08:00
parent b282e34dc2
commit 2f2e417b68
2 changed files with 12 additions and 2 deletions

View file

@ -169,6 +169,16 @@ func printout(level int, entry *filer2.Entry) error {
print("| ")
}
}
println(entry.FullPath.Name())
print(entry.FullPath.Name())
for _, chunk:=range entry.Chunks{
print("[")
print(chunk.FileId)
print(",")
print(chunk.Offset)
print(",")
print(chunk.Size)
print(")")
}
println()
return nil
}

View file

@ -120,7 +120,7 @@ func (wfs *WFS) ReleaseHandle(fullpath string, handleId fuse.HandleID) {
wfs.pathToHandleLock.Lock()
defer wfs.pathToHandleLock.Unlock()
glog.V(4).Infof("%s releasing handle id %dcurrent handles lengh %d", fullpath, handleId, len(wfs.handles))
glog.V(4).Infof("%s releasing handle id %d current handles length %d", fullpath, handleId, len(wfs.handles))
delete(wfs.pathToHandleIndex, fullpath)
if int(handleId) < len(wfs.handles) {
wfs.handles[int(handleId)] = nil