From 05320a507619f3007880c6e4270f08acb4d7f840 Mon Sep 17 00:00:00 2001 From: Zhuyi Xue Date: Wed, 29 Jun 2022 09:04:37 -0700 Subject: [PATCH] typo fix in logging number of gRPC threads used --- python/seldon_core/microservice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/seldon_core/microservice.py b/python/seldon_core/microservice.py index c7b87c79bc..7bca5d133c 100644 --- a/python/seldon_core/microservice.py +++ b/python/seldon_core/microservice.py @@ -485,7 +485,7 @@ def _wait_forever(server): def _run_grpc_server(bind_address): """Start a server in a subprocess.""" - logger.info(f"Starting new GRPC server with {args.grpc_threads}.") + logger.info(f"Starting new GRPC server with {args.grpc_threads} threads.") if args.tracing: from grpc_opentracing import open_tracing_server_interceptor