Browse Source

Import Postgres driver support for the psql indexer (backport). (#7057)

I accidentally omitted this from the backport in #6906.
Fixes #7043.
pull/7085/head
M. J. Fromberger 3 years ago
committed by GitHub
parent
commit
474ed04273
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions
  1. +2
    -0
      CHANGELOG_PENDING.md
  2. +4
    -1
      node/node.go

+ 2
- 0
CHANGELOG_PENDING.md View File

@ -25,3 +25,5 @@ Friendly reminder, we have a [bug bounty program](https://hackerone.com/tendermi
### IMPROVEMENTS
### BUG FIXES
- [\#7057](https://github.com/tendermint/tendermint/pull/7057) Import Postgres driver support for the psql indexer (@creachadair).

+ 4
- 1
node/node.go View File

@ -7,7 +7,6 @@ import (
"fmt"
"net"
"net/http"
_ "net/http/pprof" // nolint: gosec // securely exposed on separate, optional port
"strings"
"time"
@ -50,6 +49,10 @@ import (
"github.com/tendermint/tendermint/types"
tmtime "github.com/tendermint/tendermint/types/time"
"github.com/tendermint/tendermint/version"
_ "net/http/pprof" // nolint: gosec // securely exposed on separate, optional port
_ "github.com/lib/pq" // provide the psql db driver
)
//------------------------------------------------------------------------------


Loading…
Cancel
Save