Skip to content

Commit 38db610

Browse files
committed
only un-cache *archived workflows takes much more time, schedule every 30 mins will make it looks like the interval is ~1 hour.
1 parent 3f0db0f commit 38db610

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

workflowmonit/workflowMonitScheduler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
LOGDIR = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'Logs')
1111
LOGGING_CONFIG = os.path.join(os.path.dirname(os.path.abspath(__file__)), 'configLogging.yml')
1212

13-
schedule.every().hour.do(wms.main)
13+
schedule.every(30).minutes.do(wms.main)
1414

1515

1616
if __name__ == "__main__":

0 commit comments

Comments
 (0)