---------------------------------------------------------------------------
_Rendezvous Traceback (most recent call last)
<ipython-input-5-a70619a70110> in <module>()
----> 1 s.run(o)
~/work/karps-python/karps/session.py in run(self, fetches, return_mode)
49 """
50 computation = self.compute(fetches, return_mode)
---> 51 return computation.values()
52
53 def compute(self, fetches, return_mode="proto"):
~/work/karps-python/karps/computation.py in values(self)
46 """
47 while not self._values():
---> 48 self._progress()
49 return self._values()
50
~/work/karps-python/karps/computation.py in _progress(self)
86 logger.debug("Calling _progress")
87 # Read one more value from the channel.
---> 88 csr = next(self._channel)
89 #logger.debug("channel: got value %s: %s", type(csr), str(csr))
90 if csr.HasField("start_graph"):
~/.local/share/virtualenvs/karps-python-NPcrF1gX/lib/python3.5/site-packages/grpc/_channel.py in __next__(self)
346
347 def __next__(self):
--> 348 return self._next()
349
350 def next(self):
~/.local/share/virtualenvs/karps-python-NPcrF1gX/lib/python3.5/site-packages/grpc/_channel.py in _next(self)
340 raise StopIteration()
341 elif self._state.code is not None:
--> 342 raise self
343
344 def __iter__(self):
_Rendezvous: <_Rendezvous of RPC that terminated with (StatusCode.UNKNOWN, )>