fix: IAM initialization crash with etcd store (#13612)

This commit is contained in:
Aditya Manthramurthy 2021-11-08 12:55:27 -08:00 committed by GitHub
parent acf26c5ab7
commit 8dfd1f03e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -70,7 +70,11 @@ type IAMEtcdStore struct {
}
func newIAMEtcdStore(client *etcd.Client, usersSysType UsersSysType) *IAMEtcdStore {
return &IAMEtcdStore{client: client, usersSysType: usersSysType}
return &IAMEtcdStore{
iamCache: newIamCache(),
client: client,
usersSysType: usersSysType,
}
}
func (ies *IAMEtcdStore) rlock() *iamCache {