Skip to content

Commit

Permalink
set correct defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
sdebruyn committed May 21, 2023
1 parent 5b94291 commit 772a14a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dbt/adapters/sqlserver/sql_server_credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ class SQLServerCredentials(Credentials):
trust_cert: Optional[bool] = False # default value in MS ODBC Driver 18 as well
retries: int = 1
schema_authorization: Optional[str] = None
login_timeout: Optional[int] = None
query_timeout: Optional[int] = None
login_timeout: Optional[int] = 0
query_timeout: Optional[int] = 0

_ALIASES = {
"user": "UID",
Expand Down

0 comments on commit 772a14a

Please sign in to comment.