|
@@ -206,11 +206,10 @@ func (p *BufferPostman) deliver() {
|
|
|
// 重置定时器
|
|
|
func (p *BufferPostman) resetTimer() {
|
|
|
if nil != p.timer && p.duration > 0 {
|
|
|
- if len(p.timer.C) > 0 {
|
|
|
+ if !p.timer.Stop() {
|
|
|
<-p.timer.C
|
|
|
}
|
|
|
- p.timer = time.NewTimer(p.duration)
|
|
|
- //p.timer.Reset(p.duration)
|
|
|
+ p.timer.Reset(p.duration)
|
|
|
p.isTimerStop = false
|
|
|
}
|
|
|
}
|