From b080fac6193ab47e4baffa080a12f8f5f1274e66 Mon Sep 17 00:00:00 2001 From: byhsu Date: Mon, 8 May 2023 20:42:14 -0700 Subject: [PATCH] update SetUserIdentifier Signed-off-by: byhsu --- auth/identity_context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/identity_context.go b/auth/identity_context.go index 1201c303d..57521826b 100644 --- a/auth/identity_context.go +++ b/auth/identity_context.go @@ -91,7 +91,7 @@ func (c IdentityContext) UserIdentifier() string { } // SetUserIdentifier allows you to explicitly set user identifier -func (c IdentityContext) SetUserIdentifier(id string) { +func (c *IdentityContext) SetUserIdentifier(id string) { c.userIdentifier = id }