diff --git a/microservices/inferer/inferer.py b/microservices/inferer/inferer.py index 25c7d38b2af4707efff0c3e1c3cbc863cc893273..2853ba87ed635f04411b22485b9a500c2a42a584 100644 --- a/microservices/inferer/inferer.py +++ b/microservices/inferer/inferer.py @@ -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()