mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-12 06:02:51 +02:00
kvdb/postgres: fix context cancellation
This commit is contained in:
@ -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,
|
||||
)
|
||||
|
Reference in New Issue
Block a user