bug: OAuth issue when connecting to Trino, multiple values for auth argument #10566
Open
1 task done
Labels
bug
Incorrect behavior inside of ibis
What happened?
We're running a Trino server and I am able to connect to the Trino database through the regular python API using this format:
``
import trino
from trino.auth import OAuth2Authentication
conn = trino.connect(
host=XXX,
user=XXX,
auth=OAuth2Authentication(),
http_scheme="https",
port=XXX,
)
``
However, when I attempt to connect through Ibis using this code:
``
import ibis
from trino.auth import OAuth2Authentication
conn = ibis.trino.connect(
host=XXX,
user=XXX,
auth=OAuth2Authentication(),
http_scheme="https",
port=XXX,
)
``
it throws an error saying that there are multiple values for the the auth keyword argument.
What version of ibis are you using?
v 9.0.0
What backend(s) are you using, if any?
NA
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: