manage_athenad.py: add daemon argument to launcher

pull/23233/head
Willem Melching 3 years ago
parent 7c4855a609
commit d09cc197d1
  1. 2
      selfdrive/athena/manage_athenad.py

@ -19,7 +19,7 @@ def main():
try:
while 1:
cloudlog.info("starting athena daemon")
proc = Process(name='athenad', target=launcher, args=('selfdrive.athena.athenad',))
proc = Process(name='athenad', target=launcher, args=('selfdrive.athena.athenad', 'athenad'))
proc.start()
proc.join()
cloudlog.event("athenad exited", exitcode=proc.exitcode)

Loading…
Cancel
Save