Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
- Add integration tests for Databricks UC Volumes ingestion queries
- Add `_retry_max_redirects` config
- Enable cloud fetch by default. To disable, set `use_cloud_fetch=False` when building `databricks.sql.client`.
- Fix: our logger would raise an uncaught exception under certain oauth error conditions

## 2.9.3 (2023-08-24)

Expand Down
2 changes: 1 addition & 1 deletion src/databricks/sql/auth/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def __get_authorization_code(self, client, auth_url, scope, state, challenge):
logger.info(f"Port {port} is in use")
last_error = e
except Exception as e:
logger.error("unexpected error", e)
logger.error("unexpected error: %s", e)
if self.redirect_port is None:
logger.error(
f"Tried all the ports {self.port_range} for oauth redirect, but can't find free port"
Expand Down