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

Signed-off-by: Ye (Charlotte) Qi <yeq@meta.com>
This commit is contained in:
Ye (Charlotte) Qi
2025-10-14 00:04:00 -07:00
committed by GitHub
parent 01ad27faff
commit d32c611f45

View File

@ -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