From 5192ab33d327a74bf3e2222dc1bbec41446745ab Mon Sep 17 00:00:00 2001 From: ckunki Date: Wed, 17 Apr 2024 14:34:56 +0200 Subject: [PATCH] Fixed review findings --- doc/developer_guide/developer_guide.md | 5 ----- exasol/saas/client/__init__.py | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/doc/developer_guide/developer_guide.md b/doc/developer_guide/developer_guide.md index e761f72..9574326 100644 --- a/doc/developer_guide/developer_guide.md +++ b/doc/developer_guide/developer_guide.md @@ -21,11 +21,6 @@ poetry run nox generate-api If you want to retrieve the JSON definition for the API model from a different source then just edit file `noxfile.py`. -Candidates -* https://cloud.exasol.com/openapi.json -* https://cloud-staging.exasol.com/openapi.json -* https://cloud-staging.exasol.com/internal-api.json - ### Read JSON definition From a Local File Use CLI option `--path` to read the JSON definition from a local file instead of a URL: diff --git a/exasol/saas/client/__init__.py b/exasol/saas/client/__init__.py index e584aa7..6c22d66 100644 --- a/exasol/saas/client/__init__.py +++ b/exasol/saas/client/__init__.py @@ -2,4 +2,4 @@ Package openapi contains the API generated from the JSON definition. """ -SAAS_HOST = "https://cloud-staging.exasol.com" +SAAS_HOST = "https://cloud.exasol.com"