Skip to content

Commit 1039694

Browse files
committed
structure arranged, tasktrigger should wait until all tasks registered
1 parent c162141 commit 1039694

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

pyscheduler/__init__.py

+5
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ def __init__(self):
4040
self.start()
4141

4242
def run(self):
43+
LOGGER.warn(
44+
'Scheduler will be starting until all scheduled tasks have been registered.',
45+
extra={'function': __name__})
46+
time.sleep(5)
47+
LOGGER.warn('Scheduler has started.', extra={'function': __name__})
4348
while True:
4449
for task, kwargs in schedule.tasks.items():
4550
entry = CronTab(kwargs['cron'])

pyscheduler/examples.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from pyscheduler import schedule, TaskTrigger
1+
from pyscheduler import schedule
22

33

44
@schedule('* * * * *')
@@ -12,4 +12,4 @@ def crawl_task():
1212

1313

1414
if __name__ == '__main__':
15-
TaskTrigger()
15+
print 'Test started.'

0 commit comments

Comments
 (0)