From ba272fc0e87cd1da8a39e0e384f96ef85f6c6a8a Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Fri, 24 Apr 2020 07:48:49 -0500 Subject: [PATCH] drop plasma store stderr logs --- detect_objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/detect_objects.py b/detect_objects.py index b5e8b1fac..f719177fe 100644 --- a/detect_objects.py +++ b/detect_objects.py @@ -63,7 +63,7 @@ DEBUG = (CONFIG.get('debug', '0') == '1') def start_plasma_store(): plasma_cmd = ['plasma_store', '-m', '400000000', '-s', '/tmp/plasma'] - plasma_process = sp.Popen(plasma_cmd, stdout=sp.DEVNULL) + plasma_process = sp.Popen(plasma_cmd, stdout=sp.DEVNULL, stderr=sp.DEVNULL) time.sleep(1) rc = plasma_process.poll() if rc is not None: