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
2 changes: 1 addition & 1 deletion doc/changes/changes_2.6.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

This release changes the strategy for deleting a SaaS database instance, as required by the changed behavior of the actual SaaS backend.

Before, SAPIPY used only a fixed waiting time. In case of HTTP responses with status code 400 and message `Operation.*not allowed.*cluster.*not.*in.*proper state` SAPIPY now retries deleting the SaaS instance for max. 5 minutes.
Before, SAPIPY used only a fixed waiting time. In case of HTTP responses with status code 400 and their messages containing the text "cluster is not in a proper state" SAPIPY now retries deleting the SaaS instance for max. 30 minutes.

## Bugfixes

Expand Down
8 changes: 8 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
# Unreleased

## Summary

tbd.

## Refactorings

* #128: Explicitly configured validation of SaaS SSL certificates in pyexasol connection
2 changes: 1 addition & 1 deletion test/integration/connection_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from exasol.saas.client.api_access import get_connection_params

SSL_OPTIONS = {"websocket_sslopt": {"cert_reqs": ssl.CERT_NONE}}
SSL_OPTIONS = {"websocket_sslopt": {"cert_reqs": ssl.CERT_REQUIRED}}


@pytest.fixture
Expand Down