kvdb/postgres: fix context cancellation

This commit is contained in:
Joost Jager
2021-12-22 12:33:50 +01:00
parent 62a2f3c809
commit 0cae55c162
5 changed files with 69 additions and 47 deletions

View File

@ -10,6 +10,7 @@ import (
"encoding/hex"
"fmt"
"strings"
"time"
"github.com/btcsuite/btcwallet/walletdb"
embeddedpostgres "github.com/fergusstrange/embedded-postgres"
@ -81,7 +82,8 @@ func NewFixture(dbName string) (*fixture, error) {
db, err := newPostgresBackend(
context.Background(),
&Config{
Dsn: dsn,
Dsn: dsn,
Timeout: time.Minute,
},
prefix,
)