From 1aa991ae1f1a426424549c92060b204114c8b3c2 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sat, 11 May 2024 14:34:15 +0200 Subject: refactor: deduce index path automatically from config.DataPath --- import/main.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'import/main.go') diff --git a/import/main.go b/import/main.go index db899e2..90f2b74 100644 --- a/import/main.go +++ b/import/main.go @@ -22,7 +22,6 @@ type Config struct { LogLevel slog.Level `conf:"default:INFO"` Timeout time.Duration `conf:"default:30m,help:maximum time to wait for all fetchers and importers combined"` Replace bool `conf:"default:false,help:whether to remove existing database, if exists"` - IndexPath string `conf:"default:data/index.bleve"` } func main() { @@ -51,7 +50,7 @@ func main() { return } - indexer, err := search.NewIndexer(runtimeConfig.IndexPath, runtimeConfig.Replace) + indexer, err := search.NewIndexer(cfg.DataPath, runtimeConfig.Replace) if err != nil { log.Fatalf("Failed to create indexer: %v", err) } -- cgit 1.4.1