From 56f53a2a6f85876485e2ae67d48b78b448caed6e Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 3 Oct 2022 10:46:11 +0200 Subject: [performance] add user cache and database (#879) * go fmt * add + use user cache and database * fix import * update tests * remove unused relation --- internal/processing/streaming/authorize.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'internal/processing/streaming/authorize.go') diff --git a/internal/processing/streaming/authorize.go b/internal/processing/streaming/authorize.go index 70e4741e1..cb152b676 100644 --- a/internal/processing/streaming/authorize.go +++ b/internal/processing/streaming/authorize.go @@ -40,8 +40,8 @@ func (p *processor) AuthorizeStreamingRequest(ctx context.Context, accessToken s return nil, gtserror.NewErrorUnauthorized(err) } - user := >smodel.User{} - if err := p.db.GetByID(ctx, uid, user); err != nil { + user, err := p.db.GetUserByID(ctx, uid) + if err != nil { if err == db.ErrNoEntries { err := fmt.Errorf("no user found for validated uid %s", uid) return nil, gtserror.NewErrorUnauthorized(err) -- cgit v1.2.3