Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Changelog
Features
~~~~~~~~
- Handle error code ``-10735`` as ``ClientConnectionError``
- Handle ``HANA Database instance resize in progress`` as ``DatabaseConnectNotPossibleError``

4.3.0
-----
Expand Down
1 change: 1 addition & 0 deletions sqlalchemy_hana/errors.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ def convert_dbapi_error(dbapi_error: DBAPIError) -> DBAPIError:
in {
"HANA Cloud region is in maintenance window",
"HANA Database instance upgrade in progress",
"HANA Database instance resize in progress",
}
# ERR_URS_INSTANCE_NOT_AVAILABLE: HANA Database service is not available
or error.errorcode == 1888
Expand Down
Loading