Revert "fix func name HasWriableVolume"

This reverts commit bff7b71389.
This commit is contained in:
bmcquee
2014-10-19 23:08:01 -07:00
parent 02ae8b98a5
commit bd664def45
2 changed files with 3 additions and 3 deletions

View File

@@ -109,7 +109,7 @@ func (t *Topology) NextVolumeId() storage.VolumeId {
return next
}
func (t *Topology) HasWriteableVolume(option *VolumeGrowOption) bool {
func (t *Topology) HasWriableVolume(option *VolumeGrowOption) bool {
vl := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl)
return vl.GetActiveVolumeCount(option) > 0
}