Fix qp-index-search looking in wrong place for config
ci/woodpecker/push/check Pipeline was successful Details
ci/woodpecker/push/manual Pipeline was successful Details
ci/woodpecker/push/release Pipeline was successful Details

rei/rakerstore_postgres_overhaul
Olivier 'reivilibre' 2022-07-02 22:41:47 +01:00
parent 9dc49f12bd
commit dba851879b
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ pub fn main() -> anyhow::Result<()> {
let config_path = opts
.config
.unwrap_or_else(|| PathBuf::from("qp_indexer.toml"));
.unwrap_or_else(|| PathBuf::from("quickpeep.ron"));
let config = IndexerConfig::load(&config_path).context("Failed to load config")?;
let indexer_backend = config.open_indexer_backend()?;