1
0
Fork 0
forked from forgejo/forgejo

Always reuse transaction (#22362)

This commit is contained in:
Jason Song 2023-01-08 09:34:58 +08:00 committed by GitHub
parent d42b52fcfa
commit 6135359a04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 104 additions and 42 deletions

View file

@ -4,14 +4,11 @@
package db
import (
"errors"
"fmt"
"code.gitea.io/gitea/modules/util"
)
var ErrAlreadyInTransaction = errors.New("database connection has already been in a transaction")
// ErrCancelled represents an error due to context cancellation
type ErrCancelled struct {
Message string