bus: dont start transaction when creating session
This commit is contained in:
@@ -29,7 +29,6 @@ func startSession(ctx context.Context) *DBSession {
|
||||
|
||||
if !ok {
|
||||
newSess := newSession()
|
||||
newSess.Begin()
|
||||
return newSess
|
||||
}
|
||||
|
||||
|
||||
@@ -17,6 +17,10 @@ func (ss *SqlStore) inTransactionWithRetry(ctx context.Context, fn func(ctx cont
|
||||
sess := startSession(ctx)
|
||||
defer sess.Close()
|
||||
|
||||
if err := sess.Begin(); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
withValue := context.WithValue(ctx, ContextSessionName, sess)
|
||||
|
||||
err := fn(withValue)
|
||||
@@ -59,6 +63,7 @@ func inTransactionWithRetryCtx(ctx context.Context, callback dbTransactionFunc,
|
||||
var err error
|
||||
|
||||
sess := startSession(ctx)
|
||||
|
||||
defer sess.Close()
|
||||
|
||||
if err = sess.Begin(); err != nil {
|
||||
|
||||
Reference in New Issue
Block a user