From f3937499face75d2d2ed0a4ac5049f8cc81b72d5 Mon Sep 17 00:00:00 2001 From: Gordon <1432970085@qq.com> Date: Thu, 16 Mar 2023 17:00:10 +0800 Subject: [PATCH] user update --- pkg/common/db/controller/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/common/db/controller/user.go b/pkg/common/db/controller/user.go index 9a3944467..f279df807 100644 --- a/pkg/common/db/controller/user.go +++ b/pkg/common/db/controller/user.go @@ -58,7 +58,7 @@ func (u *userDatabase) FindWithError(ctx context.Context, userIDs []string) (use return } if len(users) != len(userIDs) { - err = errs.ErrRecordNotFound.Wrap() + err = errs.ErrRecordNotFound.Wrap("userID not found") } return }