Unverified Commit d32c611f authored by Ye (Charlotte) Qi's avatar Ye (Charlotte) Qi Committed by GitHub
Browse files

[CI/Build] Use 127.0.0.1 instead of localhost in utils (#26750)


Signed-off-by: default avatarYe (Charlotte) Qi <yeq@meta.com>
parent 01ad27fa
......@@ -157,7 +157,7 @@ class RemoteOpenAIServer:
self.host = None
self.port = None
else:
self.host = str(args.host or "localhost")
self.host = str(args.host or "127.0.0.1")
self.port = int(args.port)
self.show_hidden_metrics = args.show_hidden_metrics_for_version is not None
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment