use existing randomStagger

This commit is contained in:
artushin 2015-04-23 17:08:17 -05:00
parent 1ebc1cf916
commit 88bfdd45ef
1 changed files with 1 additions and 2 deletions

View File

@ -3,7 +3,6 @@ package agent
import ( import (
"fmt" "fmt"
"log" "log"
"math/rand"
"reflect" "reflect"
"strings" "strings"
"sync" "sync"
@ -211,7 +210,7 @@ func (l *localState) UpdateCheck(checkID, status, output string) {
if _, ok := l.deferCheck[checkID]; !ok { if _, ok := l.deferCheck[checkID]; !ok {
var intv time.Duration var intv time.Duration
if l.config.CheckUpdateStagger { if l.config.CheckUpdateStagger {
intv = time.Duration(uint64(l.config.CheckUpdateInterval)/2 + uint64(rand.Int63())%uint64(l.config.CheckUpdateInterval)) intv = time.Duration(uint64(l.config.CheckUpdateInterval)/2) + randomStagger(l.config.CheckUpdateInterval)
} else { } else {
intv = l.config.CheckUpdateInterval intv = l.config.CheckUpdateInterval
} }