Merge pull request #3144 from wgliang/master

should use time.Since instead of time.Now().Sub
This commit is contained in:
Fabian Reinartz 2017-09-07 13:51:47 +02:00 committed by GitHub
commit 6ab652e3dc
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ func (s *memorySeries) maybeCloseHeadChunk(timeout time.Duration) (bool, error)
if s.headChunkClosed {
return false, nil
}
if time.Now().Sub(s.lastTime.Time()) > timeout {
if time.Since(s.lastTime.Time()) > timeout {
s.headChunkClosed = true
// Since we cannot modify the head chunk from now on, we
// don't need to bother with cloning anymore.