manager: default driverview to False (#23492)

old-commit-hash: 6e817f9eb5
commatwo_master
Shane Smiskol 3 years ago committed by GitHub
parent 3b3a61fcdf
commit 002c79d2d5
  1. 4
      selfdrive/manager/process.py

@ -67,6 +67,7 @@ class ManagerProcess(ABC):
daemon = False
sigkill = False
persistent = False
driverview = False
proc: Optional[Process] = None
enabled = True
name = ""
@ -291,8 +292,7 @@ def ensure_running(procs: ValuesView[ManagerProcess], started: bool, driverview:
p.stop(block=False)
elif p.persistent:
p.start()
elif getattr(p, 'driverview', False) and driverview:
# TODO: why is driverview an argument here? can this be done with the name?
elif p.driverview and driverview:
p.start()
elif started:
p.start()

Loading…
Cancel
Save