mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
skip busy reporting back to master
possible fix for https://github.com/chrislusf/seaweedfs/issues/499
This commit is contained in:
parent
c5f23b26fc
commit
bd97cbc523
|
@ -275,10 +275,6 @@ func (s *Store) Write(i VolumeId, n *Needle) (size uint32, err error) {
|
|||
} else {
|
||||
err = fmt.Errorf("Volume Size Limit %d Exceeded! Current size is %d", s.VolumeSizeLimit, v.ContentSize())
|
||||
}
|
||||
if s.VolumeSizeLimit < v.ContentSize()+3*uint64(size) {
|
||||
glog.V(0).Infoln("volume", i, "size", v.ContentSize(), "will exceed limit", s.VolumeSizeLimit)
|
||||
s.updateMaster()
|
||||
}
|
||||
return
|
||||
}
|
||||
glog.V(0).Infoln("volume", i, "not found!")
|
||||
|
|
Loading…
Reference in a new issue