From 53bc1ea25bf707afd828141255f3fb7841c23686 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Wed, 23 Dec 2020 23:53:46 -0800 Subject: [PATCH] fix compilation --- weed/filer/hbase/hbase_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/filer/hbase/hbase_store.go b/weed/filer/hbase/hbase_store.go index cc690c48a..68170ec18 100644 --- a/weed/filer/hbase/hbase_store.go +++ b/weed/filer/hbase/hbase_store.go @@ -135,7 +135,7 @@ func (store *HbaseStore) DeleteFolderChildren(ctx context.Context, path util.Ful } fullpath := util.FullPath(cell.Row) dir, _ := fullpath.DirAndName() - if dir != string(dirPath) { + if dir != string(dir) { continue }