From 4b13d224bd343b6068a295959a33fb9ab02d332d Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Wed, 15 Dec 2021 17:03:12 +0100 Subject: [PATCH] manage_athenad.py: add daemon argument to launcher old-commit-hash: d09cc197d11efa2181ce68ef4212cb9df5ee285c --- selfdrive/athena/manage_athenad.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/athena/manage_athenad.py b/selfdrive/athena/manage_athenad.py index 17926f5a93..58ad58310f 100755 --- a/selfdrive/athena/manage_athenad.py +++ b/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)