Skip to content
Snippets Groups Projects
Commit ea48e913 authored by Julien B.'s avatar Julien B.
Browse files

fix(inferer): fix issues

parent c50b4759
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ class InfererServicer(inferer_pb2_grpc.InfererServicer):
def serve():
server = grpc.server(futures.ThreadPoolExecutor(max_workers=1))
inferer_pb2_grpc.add_InfererServicer_to_server(inferer_pb2_grpc.InfererServicer(), server)
inferer_pb2_grpc.add_InfererServicer_to_server(InfererServicer(), server)
server.add_insecure_port('[::]:80')
server.start()
server.wait_for_termination()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment