Merge pull request #1172 from syncthing/random-scanintv

Add a random perturbation to the scan interval (fixes #1150)
This commit is contained in:
Audrius Butkevicius
2015-01-02 15:25:22 +00:00
2 changed files with 11 additions and 3 deletions

View File

@@ -17,6 +17,7 @@ package model
import (
"fmt"
"math/rand"
"time"
)
@@ -63,7 +64,9 @@ func (s *Scanner) Serve() {
return
}
timer.Reset(s.intv)
// Sleep a random time between 3/4 and 5/4 of the configured interval.
sleepNanos := (s.intv.Nanoseconds()*3 + rand.Int63n(2*s.intv.Nanoseconds())) / 4
timer.Reset(time.Duration(sleepNanos) * time.Nanosecond)
}
}
}