1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-05-14 07:20:48 +02:00

remove unused code

This commit is contained in:
chrislu 2023-12-24 11:11:41 -08:00
parent 838578b55f
commit c6b1dc7058

View file

@ -201,13 +201,6 @@ func (t *Topology) NextVolumeId() (needle.VolumeId, error) {
return next, nil
}
// deprecated
func (t *Topology) HasWritableVolume(option *VolumeGrowOption) bool {
vl := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl, option.DiskType)
active, _ := vl.GetActiveVolumeCount(option)
return active > 0
}
func (t *Topology) PickForWrite(count uint64, option *VolumeGrowOption) (string, uint64, *VolumeLocationList, error) {
vid, count, datanodes, err := t.GetVolumeLayout(option.Collection, option.ReplicaPlacement, option.Ttl, option.DiskType).PickForWrite(count, option)
if err != nil {