added while true loop
This commit is contained in:
parent
e09ed0ed60
commit
524b0ba516
3 changed files with 8 additions and 4 deletions
|
|
@ -63,8 +63,12 @@ def main():
|
|||
for period in hostGroupService.periods:
|
||||
|
||||
jobs.append(period.createJob(scheduler, jobInfo, handleJob))
|
||||
for job in jobs:
|
||||
log.i(str(job))
|
||||
|
||||
while True:
|
||||
try:
|
||||
time.sleep(10)
|
||||
except:
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue