Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions dbt/adapters/spark/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -613,12 +613,11 @@ def build_ssl_transport(
password = "x"

def sasl_factory() -> SASLClient:
from pyhive.hive import get_installed_sasl
if sasl_auth == "GSSAPI":
sasl_client = SASLClient(host, kerberos_service_name, mechanism=sasl_auth)
sasl_client = get_installed_sasl(host, sasl_auth, kerberos_service_name)
elif sasl_auth == "PLAIN":
sasl_client = SASLClient(
host, mechanism=sasl_auth, username=username, password=password
)
sasl_client = get_installed_sasl(host, sasl_auth, username=username, password=password)
else:
raise AssertionError
return sasl_client
Expand Down