Skip to content

Commit 7eca8f5

Browse files
committed
changes
1 parent d282c53 commit 7eca8f5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/datapilot/clients/altimate/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ def run_project_governance_llm_checks(self, manifest, catalog, check_names):
107107

108108
def get_all_dbt_configs(self):
109109
"""Get all DBT configs with a page size of 100."""
110-
endpoint = "/dbt/v1/configs"
110+
endpoint = "/dbtconfig/"
111111
params = {"size": 100}
112112
return self.get(endpoint, params=params)

src/datapilot/core/platforms/dbt/cli/cli.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ def project_health(
8383
matching_configs = [c for c in configs["items"] if c["name"] == config_name]
8484
if matching_configs:
8585
# Get the config directly from the API response
86+
click.echo(f"Using config: {config_name}")
8687
config = matching_configs[0].get("config", {})
8788
else:
8889
click.echo(f"No config found with name: {config_name}")

0 commit comments

Comments
 (0)