File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 10
10
types : [opened, reopened]
11
11
workflow_dispatch :
12
12
schedule :
13
- # “ At 4 am on every day.” (https://crontab.guru)
14
- - cron : " 0 4 * * *"
13
+ # " At 2 am UTC on every day." (https://crontab.guru)
14
+ - cron : " 0 2 * * *"
15
15
16
16
jobs :
17
17
Original file line number Diff line number Diff line change 3
3
## Refactorings
4
4
5
5
* #68 : Update to Python 3.10
6
+ * #70 : Optimized logging
7
+ * n/a: Changed schedule checking if open api is outdated to 2 am
Original file line number Diff line number Diff line change @@ -273,7 +273,7 @@ def wait_until_running(
273
273
def poll_status ():
274
274
db = self .get_database (database_id )
275
275
if db .status not in success :
276
- print ( f'status = { db .status } ' )
276
+ LOG . info ( f"- Database status: { db .status } ..." )
277
277
raise TryAgain
278
278
return db .status
279
279
You can’t perform that action at this time.
0 commit comments