Commit 9b0af836 authored by rithu leena john's avatar rithu leena john Committed by GitHub

Merge pull request #905 from rithujohn191/error-msg

server/rotation.go: avoid displaying the "keys already rotated" error
parents 3d7b1477 dd1e901d
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment