request the current configuration after every iteration cycle

This commit is contained in:
Sven Czarnian
2021-11-14 10:02:36 +01:00
parent f7b8f26e48
commit 7452eb595d

View File

@@ -91,6 +91,11 @@ class Worker(Thread):
if 0 != (counter % 10): if 0 != (counter % 10):
continue continue
# request the current configuration from the server and update it, if useful
newConfig = self.WebUi.requestConfiguration(self.Icao, self.Configuration.GngData)
if None != newConfig:
self.sequencingConfiguration = newConfig
self.acquireLock() self.acquireLock()
# perform some book-keeping # perform some book-keeping