Skip to content

Commit

Permalink
Merge pull request #456 from dvic/patch-1
Browse files Browse the repository at this point in the history
Support HTTP secret extra_http_headers
  • Loading branch information
jwills authored Oct 10, 2024
2 parents 9714864 + 52d9620 commit db95b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/duckdb/secrets.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def to_sql(self) -> str:
params.update(params.pop("secret_kwargs", {}))
params_sql = f",\n{tab}".join(
[
f"{key} '{value}'" if key not in ["type", "provider"] else f"{key} {value}"
f"{key} '{value}'" if key not in ["type", "provider", "extra_http_headers"] else f"{key} {value}"
for key, value in params.items()
if value is not None and key not in ["name", "persistent"]
]
Expand Down

0 comments on commit db95b91

Please sign in to comment.