diff options
Diffstat (limited to 'internal/db/bundb/marker.go')
-rw-r--r-- | internal/db/bundb/marker.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/bundb/marker.go b/internal/db/bundb/marker.go index 861f7de36..5d365e08a 100644 --- a/internal/db/bundb/marker.go +++ b/internal/db/bundb/marker.go @@ -87,7 +87,7 @@ func (m *markerDB) UpdateMarker(ctx context.Context, marker *gtsmodel.Marker) er // Optimistic concurrency control: start a transaction, try to update a row with a previously retrieved version. // If the update in the transaction fails to actually change anything, another update happened concurrently, and // this update should be retried by the caller, which in this case involves sending HTTP 409 to the API client. - return m.db.RunInTx(ctx, func(tx bun.Tx) error { + return m.db.RunInTx(ctx, func(tx Tx) error { result, err := tx.NewUpdate(). Model(marker). WherePK(). |