avoid potential race lazy initializers in RelyingParty

This commit is contained in:
David Sharnoff 2022-09-27 18:39:05 -07:00
parent e0a8f4c678
commit 2067a740cc

View file

@ -154,6 +154,8 @@ func NewRelyingPartyOAuth(config *oauth2.Config, options ...Option) (RelyingPart
}
}
_ = rp.IDTokenVerifier()
return rp, nil
}