Skip to content

Commit

Permalink
Mention Conduit in DB open error message. (#1569)
Browse files Browse the repository at this point in the history
  • Loading branch information
winder authored Aug 28, 2023
1 parent a6cd341 commit f3e54d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/algorand-indexer/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ var (
func indexerDbFromFlags(opts idb.IndexerDbOptions) (idb.IndexerDb, chan struct{}, error) {
if postgresAddr != "" {
db, ch, err := idb.IndexerDbByName("postgres", postgresAddr, opts, logger)
maybeFail(err, "could not init db, %v", err)
maybeFail(err, "unable to open database, if tables are not initialized ensure Conduit is running")
return db, ch, nil
}
if dummyIndexerDb {
Expand Down

0 comments on commit f3e54d6

Please sign in to comment.