dont redirect stdout for plasma store

This commit is contained in:
Blake Blackshear 2020-02-23 15:53:17 -06:00
parent 5998de610b
commit 9340a74371

View File

@ -120,7 +120,7 @@ def main():
# start plasma store # start plasma store
plasma_cmd = ['plasma_store', '-m', '400000000', '-s', '/tmp/plasma'] 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) time.sleep(1)
rc = plasma_process.poll() rc = plasma_process.poll()
if rc is not None: if rc is not None: