manage_athenad.py: add daemon argument to launcher

pull/23233/head
Willem Melching 2021-12-15 17:03:12 +01:00
parent 7c4855a609
commit d09cc197d1
1 changed files with 1 additions and 1 deletions

View File

@ -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)