diff options
author | 2023-11-14 15:57:25 +0100 | |
---|---|---|
committer | 2023-11-14 15:57:25 +0100 | |
commit | 4ee436e98a3351d9568c4a018bd2de34c218e9a6 (patch) | |
tree | 4b919150266fb327805f78663e9e705179598a7b /internal/federation/dereferencing/account.go | |
parent | [bugfix] Update poll delete/update db queries (#2361) (diff) | |
download | gotosocial-4ee436e98a3351d9568c4a018bd2de34c218e9a6.tar.xz |
[bugfix] process account delete side effects in serial, not in parallel (#2360)
* [bugfix] process account delete side effects in serial, not in parallel
* StartWorkers / StartNoopWorkers for tests
* undo testrig trace logging
* log errors instead of immediately returning
Diffstat (limited to 'internal/federation/dereferencing/account.go')
-rw-r--r-- | internal/federation/dereferencing/account.go | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/internal/federation/dereferencing/account.go b/internal/federation/dereferencing/account.go index d551c3f0b..19d53895a 100644 --- a/internal/federation/dereferencing/account.go +++ b/internal/federation/dereferencing/account.go @@ -317,11 +317,9 @@ func (d *Dereferencer) RefreshAccountAsync(ctx context.Context, requestUser stri if apubAcc != nil { // This account was updated, enqueue re-dereference featured posts. - d.state.Workers.Federator.MustEnqueueCtx(ctx, func(ctx context.Context) { - if err := d.dereferenceAccountFeatured(ctx, requestUser, latest); err != nil { - log.Errorf(ctx, "error fetching account featured collection: %v", err) - } - }) + if err := d.dereferenceAccountFeatured(ctx, requestUser, latest); err != nil { + log.Errorf(ctx, "error fetching account featured collection: %v", err) + } } }) } |