diff options
author | 2024-05-02 14:43:00 +0200 | |
---|---|---|
committer | 2024-05-02 13:43:00 +0100 | |
commit | ebec95a52280980caa88b9c8cd92d69c1a7dc164 (patch) | |
tree | afea663a4ed5a5312755c828e104f27ec137a7d6 /internal/processing/status/pin.go | |
parent | [feature] Page through accounts as moderator (#2881) (diff) | |
download | gotosocial-ebec95a52280980caa88b9c8cd92d69c1a7dc164.tar.xz |
[bugfix] Lock when checking/creating notifs to avoid race (#2890)
* [bugfix] Lock when checking/creating notifs to avoid race
* test notif spam
Diffstat (limited to 'internal/processing/status/pin.go')
-rw-r--r-- | internal/processing/status/pin.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/processing/status/pin.go b/internal/processing/status/pin.go index d0688331b..c4a6fc3b8 100644 --- a/internal/processing/status/pin.go +++ b/internal/processing/status/pin.go @@ -83,7 +83,7 @@ func (p *Processor) PinCreate(ctx context.Context, requestingAccount *gtsmodel.A } // Get a lock on this account. - unlock := p.state.AccountLocks.Lock(requestingAccount.URI) + unlock := p.state.ProcessingLocks.Lock(requestingAccount.URI) defer unlock() if !targetStatus.PinnedAt.IsZero() { @@ -148,7 +148,7 @@ func (p *Processor) PinRemove(ctx context.Context, requestingAccount *gtsmodel.A } // Get a lock on this account. - unlock := p.state.AccountLocks.Lock(requestingAccount.URI) + unlock := p.state.ProcessingLocks.Lock(requestingAccount.URI) defer unlock() if targetStatus.PinnedAt.IsZero() { |