summaryrefslogtreecommitdiff
path: root/internal/db/bundb/conn.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/bundb/conn.go')
-rw-r--r--internal/db/bundb/conn.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/bundb/conn.go b/internal/db/bundb/conn.go
index 1c85f6f6f..2f2dfbe9f 100644
--- a/internal/db/bundb/conn.go
+++ b/internal/db/bundb/conn.go
@@ -55,7 +55,7 @@ func (conn *DBConn) RunInTx(ctx context.Context, fn func(bun.Tx) error) db.Error
}
// Finally, commit
- err = tx.Commit()
+ err = tx.Commit() //nolint:contextcheck
done = true
return err
}())