[
https://issues.apache.org/jira/browse/THRIFT-3598?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15138409#comment-15138409
]
Hudson commented on THRIFT-3598:
--------------------------------
SUCCESS: Integrated in Thrift-precommit #45 (See
[https://builds.apache.org/job/Thrift-precommit/45/])
THRIFT-3598 TBufferedTransport doesn't instantiate client connection (nsuke:
[https://github.com/apache/thrift/commit/3b89cc5305735306316f68df635e7f4c0e62d904])
* test/known_failures_Linux.json
* test/lua/test_basic_client.lua
* lib/lua/TBufferedTransport.lua
> TBufferedTransport doesn't instantiate client connection
> --------------------------------------------------------
>
> Key: THRIFT-3598
> URL: https://issues.apache.org/jira/browse/THRIFT-3598
> Project: Thrift
> Issue Type: Bug
> Components: Lua - Library
> Affects Versions: 0.9.3
> Environment: Linux
> Reporter: Phongphan Phuttha
> Assignee: Phongphan Phuttha
> Fix For: 0.9.4
>
>
> The TBufferedTransport doesn't seem to correctly instantiated.
> {code}
> local socket = TSocket:new{
> host = '127.0.0.1',
> port = 9090
> }
> assert(socket, 'Failed to create client socket')
> socket:setTimeout(5000)
> local transport = TBufferedTransport:new{
> trans = socket
> }
> assert(transport, 'Failed to create buffered transport')
> local protocol = TBinaryProtocol:new{
> trans = transport
> }
> assert(protocol, 'Failed to create binary protocol')
> local client = ThriftTestClient:new{
> protocol = protocol
> }
> assert(client, 'Failed to create client')
> -- Open the socket
> transport:open()
> client:ping()
> {code}
> The {{transport:open()}} doesn't open connection open to the server.
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)