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: try:
while 1: while 1:
cloudlog.info("starting athena daemon") 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.start()
proc.join() proc.join()
cloudlog.event("athenad exited", exitcode=proc.exitcode) cloudlog.event("athenad exited", exitcode=proc.exitcode)

Loading…
Cancel
Save