Skip to content

Commit

Permalink
fix build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pankaj-peerdb committed Jan 29, 2024
1 parent ac067f0 commit 3b4c273
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,4 @@ services:

volumes:
pgdata:
prometheusdata:
prometheusdata:
4 changes: 4 additions & 0 deletions nexus/analyzer/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,9 @@ fn parse_db_options(
Some(config)
}
DbType::Clickhouse => {
let conn_str = opts.get("metadata_db");
let metadata_db = parse_metadata_db_info(conn_str.copied())?;

let s3_int = opts
.get("s3_integration")
.map(|s| s.to_string())
Expand All @@ -814,6 +817,7 @@ fn parse_db_options(
.context("no default database specified")?
.to_string(),
s3_integration: s3_int,
metadata_db,
};
let config = Config::ClickhouseConfig(clickhouse_config);
Some(config)
Expand Down

0 comments on commit 3b4c273

Please sign in to comment.