aboutsummaryrefslogtreecommitdiff
path: root/weed/topology/topology.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2019-10-29 23:18:41 -0700
committerChris Lu <chris.lu@gmail.com>2019-10-29 23:18:41 -0700
commit5b950c735e3076afabe09ec6d36ca6919e674300 (patch)
tree30f502b54fe1566370b93524df765f080420de20 /weed/topology/topology.go
parentb7156291a85f9582ddb97ea357c38ee141e09f73 (diff)
parent57e441d67be69311b2428d88dd41b5791ee51f99 (diff)
downloadseaweedfs-5b950c735e3076afabe09ec6d36ca6919e674300.tar.xz
seaweedfs-5b950c735e3076afabe09ec6d36ca6919e674300.zip
Merge branch 'master' into refactoring_dat_backend
Diffstat (limited to 'weed/topology/topology.go')
-rw-r--r--weed/topology/topology.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/topology/topology.go b/weed/topology/topology.go
index eff8c99a0..ea0769248 100644
--- a/weed/topology/topology.go
+++ b/weed/topology/topology.go
@@ -120,10 +120,10 @@ func (t *Topology) HasWritableVolume(option *VolumeGrowOption) bool {
func (t *Topology) PickForWrite(count uint64, option *VolumeGrowOption) (string, uint64, *DataNode, error) {
vid, count, datanodes, err := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl).PickForWrite(count, option)
if err != nil {
- return "", 0, nil, fmt.Errorf("failed to find writable volumes for collectio:%s replication:%s ttl:%s error: %v", option.Collection, option.ReplicaPlacement.String(), option.Ttl.String(), err)
+ return "", 0, nil, fmt.Errorf("failed to find writable volumes for collection:%s replication:%s ttl:%s error: %v", option.Collection, option.ReplicaPlacement.String(), option.Ttl.String(), err)
}
if datanodes.Length() == 0 {
- return "", 0, nil, fmt.Errorf("no writable volumes available for for collectio:%s replication:%s ttl:%s", option.Collection, option.ReplicaPlacement.String(), option.Ttl.String())
+ return "", 0, nil, fmt.Errorf("no writable volumes available for collection:%s replication:%s ttl:%s", option.Collection, option.ReplicaPlacement.String(), option.Ttl.String())
}
fileId, count := t.Sequence.NextFileId(count)
return needle.NewFileId(*vid, fileId, rand.Uint32()).String(), count, datanodes.Head(), nil