diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-06-03 10:38:21 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-06-03 10:38:21 -0700 |
| commit | d85b41b9048cb336265298e47789838f7a5e597c (patch) | |
| tree | 30cc3668eaa12cd42ad46941636242b688434783 /weed/shell/command_ec_common.go | |
| parent | 7e80b2b8823a9bb8bac58100a76d6a5825c94be4 (diff) | |
| download | seaweedfs-d85b41b9048cb336265298e47789838f7a5e597c.tar.xz seaweedfs-d85b41b9048cb336265298e47789838f7a5e597c.zip | |
fix ec.encode not finding the local ec shards
Diffstat (limited to 'weed/shell/command_ec_common.go')
| -rw-r--r-- | weed/shell/command_ec_common.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/command_ec_common.go b/weed/shell/command_ec_common.go index 0cbf694cd..b5560b560 100644 --- a/weed/shell/command_ec_common.go +++ b/weed/shell/command_ec_common.go @@ -62,7 +62,7 @@ func oneServerCopyAndMountEcShardsFromSource(ctx context.Context, grpcDialOption SourceDataNode: existingLocation, }) if copyErr != nil { - return copyErr + return fmt.Errorf("copy %d.%v %s => %s : %v\n", volumeId, shardIdsToCopy, existingLocation, targetServer.info.Id, copyErr) } } @@ -73,7 +73,7 @@ func oneServerCopyAndMountEcShardsFromSource(ctx context.Context, grpcDialOption ShardIds: shardIdsToCopy, }) if mountErr != nil { - return mountErr + return fmt.Errorf("mount %d.%v on %s : %v\n", volumeId, shardIdsToCopy, targetServer.info.Id, mountErr) } if targetServer.info.Id != existingLocation { |
