Skip to content

Commit

Permalink
typo fix in logging number of gRPC threads used (#4194)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuyi Xue committed Jun 30, 2022
1 parent fe66169 commit 8a3d7ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/seldon_core/microservice.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8a3d7ca

Please sign in to comment.