Merge pull request #905 from rithujohn191/error-msg

server/rotation.go: avoid displaying the "keys already rotated" error
This commit is contained in:
rithu leena john 2017-04-11 14:17:22 -07:00 committed by GitHub
commit 9b0af83604
1 changed files with 4 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import (
"crypto/rand"
"crypto/rsa"
"encoding/hex"
"errors"
"fmt"
"io"
"time"
@ -125,8 +124,11 @@ func (k keyRotater) rotate() error {
var nextRotation time.Time
err = k.Storage.UpdateKeys(func(keys storage.Keys) (storage.Keys, error) {
tNow := k.now()
// if you are running multiple instances of dex, another instance
// could have already rotated the keys.
if tNow.Before(keys.NextRotation) {
return storage.Keys{}, errors.New("keys already rotated")
return storage.Keys{}, nil
}
expired := func(key storage.VerificationKey) bool {