aboutsummaryrefslogtreecommitdiff
path: root/weed/filesys/wfs.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2018-11-21 15:12:47 -0800
committerChris Lu <chris.lu@gmail.com>2018-11-21 15:12:47 -0800
commit2f2e417b683c99a3bab5bab18db5ef28f930622c (patch)
treeaecdd9d14c5dd077431e7730ce7c365b45bedf9e /weed/filesys/wfs.go
parentb282e34dc2933c71929b1d9297c44b1598344a1f (diff)
downloadseaweedfs-2f2e417b683c99a3bab5bab18db5ef28f930622c.tar.xz
seaweedfs-2f2e417b683c99a3bab5bab18db5ef28f930622c.zip
detailed export
Diffstat (limited to 'weed/filesys/wfs.go')
-rw-r--r--weed/filesys/wfs.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/filesys/wfs.go b/weed/filesys/wfs.go
index a3e16a996..5d27bd6cd 100644
--- a/weed/filesys/wfs.go
+++ b/weed/filesys/wfs.go
@@ -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