Skip to content

Commit

Permalink
typo fix in logging number of gRPC workers (#4195)
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuyi Xue committed Jun 30, 2022
1 parent 9989e20 commit fe66169
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 @@ -530,7 +530,7 @@ def grpc_prediction_server():
with _reserve_grpc_port() as bind_port:
bind_address = "0.0.0.0:{}".format(bind_port)
logger.info(
f"GRPC Server Binding to '%s' {bind_address} with {args.workers} processes"
f"GRPC Server Binding to '%s' {bind_address} with {args.grpc_workers} processes."
)
sys.stdout.flush()
workers = []
Expand Down

0 comments on commit fe66169

Please sign in to comment.