Delay initial explorer report incase of bugs/issues

This commit is contained in:
Mashintime 2023-11-18 03:49:32 -05:00
parent dc843276c2
commit b837c0f854

View file

@ -27,6 +27,8 @@ class explorer():
self.interval_thread.start()
def interval(self):
# Wait for just a little bit incase modem is contionously restarting due to a bug or user configuration issue
threading.Event().wait(30)
while True:
self.push()
threading.Event().wait(self.publish_interval)