From ab38ac3869db7a4892990f8ff8dc7b51fa6d0bca Mon Sep 17 00:00:00 2001 From: ajouatom Date: Sat, 15 Feb 2025 18:35:54 +0900 Subject: [PATCH] fix zmq cmd --- selfdrive/carrot/carrot_man.py | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/carrot/carrot_man.py b/selfdrive/carrot/carrot_man.py index 726f3b4..bdf4ee3 100644 --- a/selfdrive/carrot/carrot_man.py +++ b/selfdrive/carrot/carrot_man.py @@ -632,6 +632,7 @@ class CarrotMan: elif 'echo_cmd' in json_obj: try: result = subprocess.run(json_obj['echo_cmd'], shell=True, capture_output=True, text=False) + exitStatus = result.returncode try: stdout = result.stdout.decode('utf-8') stderr = result.stderr.decode('utf-8')