Skip to content

Commit

Permalink
Up default socket timeout to 600 (#625)
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db authored Mar 29, 2024
1 parent b7519ed commit b7822fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## dbt-databricks 1.7.12 (TBD)

### Fixes

- Up default socket timeout to 10 minutes

## dbt-databricks 1.7.11 (Mar 26, 2024)

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ def __post_init__(self) -> None:
f"{http_headers}."
)
if "_socket_timeout" not in connection_parameters:
connection_parameters["_socket_timeout"] = 180
connection_parameters["_socket_timeout"] = 600
self.connection_parameters = connection_parameters

def validate_creds(self) -> None:
Expand Down

0 comments on commit b7822fb

Please sign in to comment.