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 58e655e  THRIFT-5252 Make CreateHttpClientHandler() method virtual 
Client: netstd Patch: Jens Geyer
58e655e is described below

commit 58e655e4b99e97a733057be78f614b4d9ddea560
Author: Jens Geyer <[email protected]>
AuthorDate: Tue Jul 14 15:34:44 2020 +0200

    THRIFT-5252 Make CreateHttpClientHandler() method virtual
    Client: netstd
    Patch: Jens Geyer
    
    This closes #2201
---
 lib/netstd/Thrift/Transport/Client/THttpTransport.cs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/netstd/Thrift/Transport/Client/THttpTransport.cs 
b/lib/netstd/Thrift/Transport/Client/THttpTransport.cs
index 7b4514f..dcd028c 100644
--- a/lib/netstd/Thrift/Transport/Client/THttpTransport.cs
+++ b/lib/netstd/Thrift/Transport/Client/THttpTransport.cs
@@ -168,7 +168,7 @@ namespace Thrift.Transport.Client
         /// A client handler with deflate and gZip compression-decompression 
algorithms and any client
         /// certificates passed in via <c>certificates</c>.
         /// </returns>
-        public static HttpClientHandler 
CreateHttpClientHandler(X509Certificate[] certificates = null)
+        public virtual HttpClientHandler 
CreateHttpClientHandler(X509Certificate[] certificates = null)
         {
             var handler = new HttpClientHandler();
             if (certificates != null)

Reply via email to