We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
utils/postgres.py needs an update:
utils/postgres.py
In PostgresClient.get_connection, all parameters in conn_info need to be passed as kwargs to psycopg2.connect
PostgresClient.get_connection
conn_info
kwargs
psycopg2.connect
So get_connection needs to move from named parameters to dict / kwargs
get_connection
And __init__ needs to pass on conn_info as dict / kwargs
__init__
The text was updated successfully, but these errors were encountered:
fatchat
Successfully merging a pull request may close this issue.
utils/postgres.py
needs an update:In
PostgresClient.get_connection
, all parameters inconn_info
need to be passed askwargs
topsycopg2.connect
So
get_connection
needs to move from named parameters to dict / kwargsAnd
__init__
needs to pass onconn_info
as dict / kwargsThe text was updated successfully, but these errors were encountered: