We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e533cf commit 158a7c7Copy full SHA for 158a7c7
src/datapilot/core/platforms/dbt/hooks/executor_hook.py
@@ -101,7 +101,7 @@ def main(argv: Optional[Sequence[str]] = None):
101
matching_configs = [c for c in configs["items"] if c["name"] == config_name]
102
if matching_configs:
103
# Get the config directly from the API response
104
- print(f"Using config from API: {config_name}", file=sys.stderr)
+ print(f"Using config from API: {config_name} id: {matching_configs[0]['id']}", file=sys.stderr)
105
config = matching_configs[0].get("config", {})
106
else:
107
print(f"No config found with name: {config_name}", file=sys.stderr)
0 commit comments