Made it far less likely for the UI to lock up

This commit is contained in:
David Carley
2021-03-23 21:19:45 -07:00
parent 47cec0dae3
commit a46230656e
13 changed files with 62 additions and 46 deletions

View File

@@ -357,7 +357,7 @@ class Planner():
self.cmdq.clear()
except:
self.log.exception()
self.log.exception('Internal error: Planner stop')
self.reset()
@@ -374,7 +374,7 @@ class Planner():
self.planner.restart(id, position)
except:
self.log.exception()
self.log.exception('Internal error: Planner restart')
self.stop()
@@ -391,5 +391,5 @@ class Planner():
self.stop()
except:
self.log.exception()
self.log.exception('Internal error: Planner next')
self.stop()