Truncate to seconds the startTime to simplify tests.

pull/51/head
Mariano Cano 5 years ago
parent 1a9e8bad74
commit 2fb77b8a4d

@ -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
// not be repeated.
a.initOnce = true

Loading…
Cancel
Save