Skip to content

Commit

Permalink
Run changie new
Browse files Browse the repository at this point in the history
  • Loading branch information
llam15 committed Jun 10, 2024
1 parent 5f6a4db commit 1a5216f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .changes/unreleased/Features-20240610-171026.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
kind: Features
body: Support JWT Authentication
time: 2024-06-10T17:10:26.421463-04:00
custom:
Author: llam15
Issue: 1079 726
4 changes: 3 additions & 1 deletion dbt/adapters/snowflake/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,9 @@ def __post_init__(self):

if not self.user:
# The user attribute is only optional if 'authenticator' is 'jwt' or 'oauth'
warn_or_error(AdapterEventError(base_msg="'user' is a required property."))
warn_or_error(
AdapterEventError(base_msg="Invalid profile: 'user' is a required property.")
)

self.account = self.account.replace("_", "-")

Expand Down

0 comments on commit 1a5216f

Please sign in to comment.