From e837aebe70b8abe9d6d759ccbec1700e9768aad9 Mon Sep 17 00:00:00 2001 From: Ingo Oppermann Date: Thu, 15 Jun 2023 14:19:50 +0200 Subject: [PATCH] Listen to identity updates in order to reload the identities --- cluster/iam/iam.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cluster/iam/iam.go b/cluster/iam/iam.go index 3bd97d61..2f582ff0 100644 --- a/cluster/iam/iam.go +++ b/cluster/iam/iam.go @@ -40,6 +40,8 @@ func (m *manager) apply(op store.Operation) { switch op { case store.OpAddIdentity: m.ReloadIndentities() + case store.OpUpdateIdentity: + m.ReloadIndentities() case store.OpRemoveIdentity: m.ReloadIndentities() case store.OpSetPolicies: