aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_remote_meta_sync.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-08-31 01:07:34 -0700
committerChris Lu <chris.lu@gmail.com>2021-08-31 01:07:34 -0700
commit97b7948cd9c40b07a6d2412895a31bb0a4b984f3 (patch)
tree79e4019cbd3180fe429e9474fce1b1377eb94782 /weed/shell/command_remote_meta_sync.go
parentc9205458a16bde4de8f8bc40b448a216888a1041 (diff)
downloadseaweedfs-97b7948cd9c40b07a6d2412895a31bb0a4b984f3.tar.xz
seaweedfs-97b7948cd9c40b07a6d2412895a31bb0a4b984f3.zip
adjust error message
Diffstat (limited to 'weed/shell/command_remote_meta_sync.go')
-rw-r--r--weed/shell/command_remote_meta_sync.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_remote_meta_sync.go b/weed/shell/command_remote_meta_sync.go
index 9005ba86f..5dbf55987 100644
--- a/weed/shell/command_remote_meta_sync.go
+++ b/weed/shell/command_remote_meta_sync.go
@@ -62,7 +62,7 @@ func (c *commandRemoteMetaSync) Do(args []string, commandEnv *CommandEnv, writer
// pull metadata from remote
if err = pullMetadata(commandEnv, writer, util.FullPath(localMountedDir), remoteStorageMountedLocation, util.FullPath(*dir), remoteStorageConf); err != nil {
- return fmt.Errorf("cache content data: %v", err)
+ return fmt.Errorf("cache meta data: %v", err)
}
return nil