запрос grpc в процессе
from multiprocessing import Process, Manager
def frames_process(self):
# fork process
self.frames_flag.value = True
self.f_process = Process(target=self.frames_handle)
self.f_process.start()
В frames_handle запросит сервер через клиента grpc, и в результате будет выполнен обратный вызов через default_cb async
def default_cb(call_future):
try:
resp = call_future.result()
logging.info("default_cb called {}".format(resp))
return resp
except Exception as e:
logging.error("future_callback error: {}".format(e))
Я использую Python2 и grpc
Ошибка: StatusCode.UNAVAILABLE
Заранее спасибо.