remove volume server /admin/volume/delete

This commit is contained in:
Chris Lu
2018-10-15 01:26:49 -07:00
parent fda771c83f
commit 66a353dcb5
3 changed files with 0 additions and 22 deletions

View File

@@ -254,14 +254,3 @@ func (s *Store) UnmountVolume(i VolumeId) error {
return fmt.Errorf("Volume %d not found on disk", i)
}
func (s *Store) DeleteVolume(i VolumeId) error {
for _, location := range s.Locations {
if error := location.deleteVolumeById(i); error == nil {
s.DeletedVolumeIdChan <- VolumeId(i)
return nil
}
}
return fmt.Errorf("Volume %d not found on disk", i)
}