Merge branch 'pr/122' into develop

This commit is contained in:
siddontang 2014-12-15 09:59:20 +08:00
parent f2cc5f5fd9
commit bb01d4c246
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ func (c *ttlChecker) setNextCheckTime(when int64, force bool) {
c.Lock()
if force {
c.nc = when
} else if !force && c.nc > when {
} else if c.nc > when {
c.nc = when
}
c.Unlock()