Skip to content

Commit

Permalink
Merge pull request #167 from jwills/jwills_remotes_with_passwords
Browse files Browse the repository at this point in the history
For the remote.password stuff to work we need to use it with psycopg2.connect
  • Loading branch information
jwills committed May 10, 2023
2 parents 092beda + 15a35d8 commit 5e63009
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dbt/adapters/duckdb/environments/buenavista.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ def _get_conn(cls, dbname: str, remote: credentials.Remote):
user=remote.user,
host=remote.host,
port=remote.port,
password=remote.password,
)

def __init__(self, credentials: credentials.DuckDBCredentials):
Expand Down

0 comments on commit 5e63009

Please sign in to comment.