Bad IP address string in test/cpp/src/main.cpp
----------------------------------------------
Key: THRIFT-456
URL: https://issues.apache.org/jira/browse/THRIFT-456
Project: Thrift
Issue Type: Bug
Components: Test Suite
Affects Versions: 0.1
Reporter: Rush Manbert
This file contains the line:
shared_ptr<TSocket> socket(new TSocket("127.0.01", port));
which has an invalid IP address string. It should be changed to:
shared_ptr<TSocket> socket(new TSocket("127.0.0.1", port));
In its current state, this causes the test to get a runtime error.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.