mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
fix issue 34
This commit is contained in:
parent
dd2245956f
commit
ff1c04c486
|
@ -146,9 +146,8 @@ func (s *Store) FreezeVolume(volumeIdString string) error {
|
|||
return fmt.Errorf("Volume %s is already read-only", volumeIdString)
|
||||
}
|
||||
return v.freeze()
|
||||
} else {
|
||||
return fmt.Errorf("volume id %s is not found during freeze!", vid)
|
||||
}
|
||||
return fmt.Errorf("volume id %s is not found during freeze!", vid)
|
||||
}
|
||||
func (l *DiskLocation) loadExistingVolumes() {
|
||||
if dirs, err := ioutil.ReadDir(l.directory); err == nil {
|
||||
|
|
Loading…
Reference in a new issue