Browse Source

Refactoring, better error combination

Volodymyr Tkach 2 years ago
parent
commit
981657cbbd
1 changed files with 9 additions and 3 deletions
  1. 9 3
      gosql/common/dbmethods.go

+ 9 - 3
gosql/common/dbmethods.go

@@ -6,8 +6,6 @@ import (
 	"fmt"
 	"os"
 	"time"
-
-	"github.com/pkg/errors"
 )
 
 type DBMethods struct {
@@ -108,7 +106,15 @@ func (db *DBMethods) Transaction(ctx context.Context, queries func(ctx context.C
 		return err
 	}
 	if err := queries(ctx, tx); err != nil {
-		return errors.Wrap(err, tx.Rollback().Error())
+		rerr := tx.Rollback()
+		if rerr != nil {
+			return fmt.Errorf(
+				"%v: %v",
+				rerr,
+				err,
+			)
+		}
+		return err
 	}
 	return tx.Commit()
 }