Use database writer in user API DeleteOldNotifications
This commit is contained in:
parent
64472d9aab
commit
34e1dc210b
|
@ -735,7 +735,9 @@ func (d *Database) GetRoomNotificationCounts(ctx context.Context, localpart, roo
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Database) DeleteOldNotifications(ctx context.Context) error {
|
func (d *Database) DeleteOldNotifications(ctx context.Context) error {
|
||||||
return d.Notifications.Clean(ctx, nil)
|
return d.Writer.Do(d.DB, nil, func(txn *sql.Tx) error {
|
||||||
|
return d.Notifications.Clean(ctx, txn)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *Database) UpsertPusher(
|
func (d *Database) UpsertPusher(
|
||||||
|
|
Loading…
Reference in a new issue