Retry if plasma client fails to connect to plasma store.

This commit is contained in:
Robert Nishihara
2016-08-16 17:52:18 -07:00
parent 1b66ac54ba
commit b6b17f3ac3
2 changed files with 13 additions and 4 deletions
-2
View File
@@ -1,7 +1,6 @@
import os
import subprocess
import sys
import time
import unittest
import plasma
@@ -12,7 +11,6 @@ class TestPlasmaAPI(unittest.TestCase):
# Start Plasma.
plasma_store_executable = os.path.join(os.path.abspath(os.path.dirname(__file__)), "../build/plasma_store")
self.p = subprocess.Popen([plasma_store_executable, "-s", "/tmp/store"])
time.sleep(0.1)
# Connect to Plasma.
self.plasma_client = plasma.PlasmaClient("/tmp/store")