Truncate to seconds the startTime to simplify tests.

This commit is contained in:
Mariano Cano 2019-03-11 18:14:20 -07:00
parent 1a9e8bad74
commit 2fb77b8a4d

View file

@ -103,7 +103,8 @@ func (a *Authority) init() error {
} }
} }
a.startTime = time.Now() // JWT numeric dates are seconds.
a.startTime = time.Now().Truncate(time.Second)
// Set flag indicating that initialization has been completed, and should // Set flag indicating that initialization has been completed, and should
// not be repeated. // not be repeated.
a.initOnce = true a.initOnce = true