From 4c2d34b09749a25016ed6987e616d0fe123223ed Mon Sep 17 00:00:00 2001 From: Martin Kraft Date: Fri, 8 May 2020 13:51:52 -0400 Subject: [PATCH] Fix log message typo. (#14472) --- store/sqlstore/user_store.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/sqlstore/user_store.go b/store/sqlstore/user_store.go index 4007f009ee..453c797193 100644 --- a/store/sqlstore/user_store.go +++ b/store/sqlstore/user_store.go @@ -978,7 +978,7 @@ func (us SqlUserStore) GetAllNotInAuthService(authServices []string) ([]*model.U var users []*model.User if _, err := us.GetReplica().Select(&users, queryString, args...); err != nil { - return nil, model.NewAppError("SqlUserStore.GetAllUsingAuthService", "store.sql_user.get_by_auth.other.app_error", nil, "", http.StatusInternalServerError) + return nil, model.NewAppError("SqlUserStore.GetAllNotInAuthService", "store.sql_user.get_by_auth.other.app_error", nil, "", http.StatusInternalServerError) } return users, nil