execute the planner every minute

This commit is contained in:
Sven Czarnian
2021-09-02 21:01:00 +02:00
parent 744ad71b6c
commit aaa37a5f62

View File

@@ -1,6 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
import threading import threading
import time
from aman.config.Airport import Airport from aman.config.Airport import Airport
@@ -16,6 +17,13 @@ class Worker(threading.Thread):
self.stopThread = True self.stopThread = True
def run(self): def run(self):
counter = 0
while None == self.stopThread: while None == self.stopThread:
time.sleep(1)
counter += 1
if 0 != (counter % 60):
continue
# TODO execute planning, etc. # TODO execute planning, etc.
continue continue