mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
comment change: 3 times of the pulse
This commit is contained in:
parent
01f2fcf72d
commit
ccab4217e4
|
@ -10,7 +10,7 @@ import (
|
||||||
func (t *Topology) StartRefreshWritableVolumes() {
|
func (t *Topology) StartRefreshWritableVolumes() {
|
||||||
go func() {
|
go func() {
|
||||||
for {
|
for {
|
||||||
freshThreshHold := time.Now().Unix() - 3*t.pulse //5 times of sleep interval
|
freshThreshHold := time.Now().Unix() - 3*t.pulse //3 times of sleep interval
|
||||||
t.CollectDeadNodeAndFullVolumes(freshThreshHold, t.volumeSizeLimit)
|
t.CollectDeadNodeAndFullVolumes(freshThreshHold, t.volumeSizeLimit)
|
||||||
time.Sleep(time.Duration(float32(t.pulse*1e3)*(1+rand.Float32())) * time.Millisecond)
|
time.Sleep(time.Duration(float32(t.pulse*1e3)*(1+rand.Float32())) * time.Millisecond)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue