We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2ae72 commit 97f5adcCopy full SHA for 97f5adc
src/Connections/Elasticsearch.Net.Connection.Thrift/Transport/TSocket.cs
@@ -38,7 +38,7 @@ public class TSocket : TStreamTransport
38
private Exception socketexception;
39
private ManualResetEvent timeoutObject = new ManualResetEvent(false);
40
41
- public TcpClient Connect(TcpClient _client)
+ public TcpClient Connect()
42
{
43
timeoutObject.Reset();
44
socketexception = null;
@@ -171,7 +171,7 @@ public override void Open()
171
InitSocket();
172
}
173
174
- client = Connect(client);
+ client = Connect();
175
176
inputStream = client.GetStream();
177
outputStream = client.GetStream();
0 commit comments