瀏覽代碼

dont redirect stdout for plasma store

Blake Blackshear 5 年之前
父節點
當前提交
9340a74371
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      detect_objects.py

+ 1 - 1
detect_objects.py

@@ -120,7 +120,7 @@ def main():
 
     # start plasma store
     plasma_cmd = ['plasma_store', '-m', '400000000', '-s', '/tmp/plasma']
-    plasma_process = sp.Popen(plasma_cmd, stdout=sp.DEVNULL, stderr=sp.DEVNULL)
+    plasma_process = sp.Popen(plasma_cmd, stdout=sp.DEVNULL)
     time.sleep(1)
     rc = plasma_process.poll()
     if rc is not None: