@@ -209,7 +209,8 @@ func (p *BufferPostman) resetTimer() {
if len(p.timer.C) > 0 {
<-p.timer.C
}
- p.timer.Reset(p.duration)
+ p.timer = time.NewTimer(p.duration)
+ //p.timer.Reset(p.duration)
p.isTimerStop = false