diff options
author | 2023-08-15 17:01:01 +0100 | |
---|---|---|
committer | 2023-08-15 17:01:01 +0100 | |
commit | e9c3663ccebee8f4bc7fc7132bb3c06514066a3a (patch) | |
tree | e543a9ea13f1c387f8a134a647abd6d707cc043c /internal/processing/workers/fromclientapi.go | |
parent | [bugfix] fix inconsistent calculated cache sizes (#2115) (diff) | |
download | gotosocial-e9c3663ccebee8f4bc7fc7132bb3c06514066a3a.tar.xz |
[chore] ensure worker contexts have request ID (#2120)
Diffstat (limited to 'internal/processing/workers/fromclientapi.go')
-rw-r--r-- | internal/processing/workers/fromclientapi.go | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/internal/processing/workers/fromclientapi.go b/internal/processing/workers/fromclientapi.go index 40efc20bb..c48bb7044 100644 --- a/internal/processing/workers/fromclientapi.go +++ b/internal/processing/workers/fromclientapi.go @@ -25,6 +25,7 @@ import ( "codeberg.org/gruf/go-logger/v2/level" "github.com/superseriousbusiness/gotosocial/internal/ap" "github.com/superseriousbusiness/gotosocial/internal/db" + "github.com/superseriousbusiness/gotosocial/internal/gtscontext" "github.com/superseriousbusiness/gotosocial/internal/gtserror" "github.com/superseriousbusiness/gotosocial/internal/gtsmodel" "github.com/superseriousbusiness/gotosocial/internal/log" @@ -46,13 +47,15 @@ type clientAPI struct { account *account.Processor } -func (p *Processor) EnqueueClientAPI(ctx context.Context, msgs ...messages.FromClientAPI) { - log.Trace(ctx, "enqueuing") - _ = p.workers.ClientAPI.MustEnqueueCtx(ctx, func(ctx context.Context) { +func (p *Processor) EnqueueClientAPI(cctx context.Context, msgs ...messages.FromClientAPI) { + _ = p.workers.ClientAPI.MustEnqueueCtx(cctx, func(wctx context.Context) { + // Copy caller ctx values to worker's. + wctx = gtscontext.WithValues(wctx, cctx) + + // Process worker messages. for _, msg := range msgs { - log.Trace(ctx, "processing: %+v", msg) - if err := p.ProcessFromClientAPI(ctx, msg); err != nil { - log.Errorf(ctx, "error processing client API message: %v", err) + if err := p.ProcessFromClientAPI(wctx, msg); err != nil { + log.Errorf(wctx, "error processing client API message: %v", err) } } }) |