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_encode.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_encode.go')
| -rw-r--r-- | weed/shell/command_ec_encode.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/shell/command_ec_encode.go b/weed/shell/command_ec_encode.go index 94265a874..f84fcf303 100644 --- a/weed/shell/command_ec_encode.go +++ b/weed/shell/command_ec_encode.go @@ -97,7 +97,7 @@ func doEcEncode(ctx context.Context, commandEnv *commandEnv, collection string, // balance the ec shards to current cluster err = spreadEcShards(ctx, commandEnv, vid, collection, locations) if err != nil { - return fmt.Errorf("spread ec shards for volume %d to %s: %v", vid, locations[0].Url, err) + return fmt.Errorf("spread ec shards for volume %d from %s: %v", vid, locations[0].Url, err) } return nil |
