Skip to content

Commit

Permalink
Import Postgres driver support for the psql indexer (backport). (#7057)
Browse files Browse the repository at this point in the history
I accidentally omitted this from the backport in #6906.
Fixes #7043.
  • Loading branch information
M. J. Fromberger committed Oct 4, 2021
1 parent 2d8287d commit 474ed04
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG_PENDING.md
Expand Up @@ -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).
5 changes: 4 additions & 1 deletion node/node.go
Expand Up @@ -7,7 +7,6 @@ import (
"fmt"
"net"
"net/http"
_ "net/http/pprof" // nolint: gosec // securely exposed on separate, optional port
"strings"
"time"

Expand Down Expand Up @@ -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
)

//------------------------------------------------------------------------------
Expand Down

0 comments on commit 474ed04

Please sign in to comment.