This is an automated email from the ASF dual-hosted git repository.

jensg pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/thrift.git


The following commit(s) were added to refs/heads/master by this push:
     new 5159da9  THRIFT-5172 NetStd OutOfMemoryException Client: netstd Patch: 
Eric Bleher
5159da9 is described below

commit 5159da90964b774e6ff952efaf2bce516538ae50
Author: [email protected] <[email protected]>
AuthorDate: Wed Apr 8 15:53:04 2020 +0200

    THRIFT-5172 NetStd OutOfMemoryException
    Client: netstd
    Patch: Eric Bleher
    
    This closes #2093
---
 lib/netstd/Thrift/TBaseClient.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/netstd/Thrift/TBaseClient.cs b/lib/netstd/Thrift/TBaseClient.cs
index 0edac0f..aefb54d 100644
--- a/lib/netstd/Thrift/TBaseClient.cs
+++ b/lib/netstd/Thrift/TBaseClient.cs
@@ -63,7 +63,7 @@ namespace Thrift
                 await _inputProtocol.Transport.OpenAsync(cancellationToken);
             }
 
-            if (!_inputProtocol.Transport.IsOpen)
+            if (!_outputProtocol.Transport.IsOpen)
             {
                 await _outputProtocol.Transport.OpenAsync(cancellationToken);
             }

Reply via email to