From f3e54d68798dde8827dc1c10cbe006ae1b63b1a2 Mon Sep 17 00:00:00 2001 From: Will Winder Date: Mon, 28 Aug 2023 16:25:38 -0400 Subject: [PATCH] Mention Conduit in DB open error message. (#1569) --- 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 {