From 02f728cb54c9410ff36c01381482628b73863682 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 9 Aug 2021 15:24:21 -0700 Subject: [PATCH] fix bug with remote.uncache --- weed/shell/command_remote_uncache.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/weed/shell/command_remote_uncache.go b/weed/shell/command_remote_uncache.go index 7fc70b7a3..64cc1472c 100644 --- a/weed/shell/command_remote_uncache.go +++ b/weed/shell/command_remote_uncache.go @@ -52,7 +52,7 @@ func (c *commandRemoteUncache) Do(args []string, commandEnv *CommandEnv, writer } var localMountedDir string - for k, _ := range mappings.Mappings { + for k := range mappings.Mappings { if strings.HasPrefix(*dir, k) { localMountedDir = k } @@ -78,6 +78,7 @@ func (c *commandRemoteUncache) uncacheContentData(commandEnv *CommandEnv, writer return true // true means recursive traversal should continue } entry.RemoteEntry.LocalMtime = 0 + entry.Chunks = nil println(dir, entry.Name)