manage_athenad.py: add daemon argument to launcher

This commit is contained in:
Willem Melching
2021-12-15 17:03:12 +01:00
parent 7c4855a609
commit d09cc197d1
+1 -1
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)