Skip to content

Commit 09e6e1e

Browse files
committed
feat: ✨ enabled daily_schema_update
1 parent a584da3 commit 09e6e1e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

index.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from discovery.handlers import HANDLERS, TemplateHandler
1111
from discovery.notify import update_n3c_routine
1212
from discovery.utils.backup import daily_backup_routine
13+
from discovery.utils.update import daily_schema_update
1314

1415
# Create a lock can only be acquired by one process.
1516
# Make sure only one process should perform backup routines
@@ -32,6 +33,8 @@ def routine():
3233
update_n3c_routine()
3334
logger.info("daily_backup_routine()")
3435
daily_backup_routine()
36+
logger.info("daily_schema_update()")
37+
daily_schema_update()
3538

3639

3740
def run_routine():

0 commit comments

Comments
 (0)