fire the timer twice, if reset to the same deadline

This commit is contained in:
Marten Seemann 2018-01-21 14:09:45 +11:00
parent 15bcc2579f
commit c3cc35363b
2 changed files with 25 additions and 1 deletions

View file

@ -21,7 +21,7 @@ func (t *Timer) Chan() <-chan time.Time {
// Reset the timer, no matter whether the value was read or not
func (t *Timer) Reset(deadline time.Time) {
if deadline.Equal(t.deadline) {
if deadline.Equal(t.deadline) && !t.read {
// No need to reset the timer
return
}