Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 2 additions & 2 deletions .github/workflows/check-api-outdated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ on:
types: [opened, reopened]
workflow_dispatch:
schedule:
# At 4 am on every day. (https://crontab.guru)
- cron: "0 4 * * *"
# "At 2 am UTC on every day." (https://crontab.guru)
- cron: "0 2 * * *"

jobs:

Expand Down
2 changes: 2 additions & 0 deletions doc/changes/unreleased.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
## Refactorings

* #68: Update to Python 3.10
* #70: Optimized logging
* n/a: Changed schedule checking if open api is outdated to 2 am
2 changes: 1 addition & 1 deletion exasol/saas/client/api_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ def wait_until_running(
def poll_status():
db = self.get_database(database_id)
if db.status not in success:
print(f'status = {db.status}')
LOG.info(f"- Database status: {db.status} ...")
raise TryAgain
return db.status

Expand Down