Merge pull request #35064 from LK4D4/replace_timer

Replace NewTimer().C with After
This commit is contained in:
Victor Vieux 2017-10-10 08:47:37 -07:00 committed by GitHub
commit b6aa01570c
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ func (s *systemRouter) getEvents(ctx context.Context, w http.ResponseWriter, r *
if !onlyPastEvents {
dur := until.Sub(now)
timeout = time.NewTimer(dur).C
timeout = time.After(dur)
}
}