From 30af72a097d4a1c7a436644b17ada586d665fd6c Mon Sep 17 00:00:00 2001 From: Will Winder Date: Thu, 24 Aug 2023 13:51:29 -0400 Subject: [PATCH] Mention Conduit in DB open error message. --- cmd/algorand-indexer/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/algorand-indexer/main.go b/cmd/algorand-indexer/main.go index de022a5af..a8ed7c93a 100644 --- a/cmd/algorand-indexer/main.go +++ b/cmd/algorand-indexer/main.go @@ -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 {