diff options
| author | Chris Lu <chris.lu@gmail.com> | 2019-06-04 22:04:10 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2019-06-04 22:04:10 -0700 |
| commit | ca8a2bb5345aec1d15bf087d66028292d567de87 (patch) | |
| tree | 2b46d3db145ec40471c1d7ed01314860510406c4 /weed/storage/erasure_coding/ec_shard.go | |
| parent | 2215e81be70e4687b8ef775911e30943cc743a13 (diff) | |
| download | seaweedfs-ca8a2bb5345aec1d15bf087d66028292d567de87.tar.xz seaweedfs-ca8a2bb5345aec1d15bf087d66028292d567de87.zip | |
go fmt
Diffstat (limited to 'weed/storage/erasure_coding/ec_shard.go')
| -rw-r--r-- | weed/storage/erasure_coding/ec_shard.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/storage/erasure_coding/ec_shard.go b/weed/storage/erasure_coding/ec_shard.go index 7b9f2dc07..2009beb9c 100644 --- a/weed/storage/erasure_coding/ec_shard.go +++ b/weed/storage/erasure_coding/ec_shard.go @@ -64,7 +64,7 @@ func EcShardFileName(collection string, dir string, id int) (fileName string) { func EcShardBaseFileName(collection string, id int) (baseFileName string) { baseFileName = strconv.Itoa(id) if collection != "" { - baseFileName = collection+"_"+baseFileName + baseFileName = collection + "_" + baseFileName } return } |
