Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Philipp Moritz <pcmoritz@gmail.com>
  • Loading branch information
pcmoritz committed Feb 11, 2025
1 parent c0ecac0 commit bbbe729
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python/ray/util/client/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -892,7 +892,11 @@ def main():
)

hostport = "%s:%d" % (args.host, args.port)
args_str = str(args).replace(args.redis_password, "****") if args.redis_password else args_str
args_str = (
str(args).replace(args.redis_password, "****")
if args.redis_password
else args_str
)
logger.info(f"Starting Ray Client server on {hostport}, args {args_str}")
if args.mode == "proxy":
server = serve_proxier(
Expand Down

0 comments on commit bbbe729

Please sign in to comment.