rkimball commented on a change in pull request #7766:
URL: https://github.com/apache/tvm/pull/7766#discussion_r613429858
##########
File path: src/support/socket.h
##########
@@ -118,7 +118,7 @@ struct SockAddr {
std::string host = url.substr(2, sep - 3);
std::string port = url.substr(sep + 1, url.length() - 1);
ICHECK(ValidateIP(host)) << "Url address is not valid " << url;
- if (host == "localhost") {
+ if (host == "127.0.0.1") {
Review comment:
This should have been left as it was with "localhost" since it is a
special valid address.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]