sudhiremmadi commented on code in PR #2745:
URL: https://github.com/apache/arrow-adbc/pull/2745#discussion_r2070897121


##########
csharp/src/Drivers/Apache/Hive2/HiveServer2TlsImpl.cs:
##########
@@ -97,5 +97,49 @@ static internal HttpClientHandler 
NewHttpClientHandler(TlsProperties tlsProperti
             }
             return httpClientHandler;
         }
+
+        static internal TlsProperties 
GetStandardTlsOptions(IReadOnlyDictionary<string, string> properties)
+        {
+            TlsProperties tlsProperties = new();
+            if (properties.TryGetValue(StandardTlsOptions.IsTlsEnabled, out 
string? isTlsEnabled) && bool.TryParse(isTlsEnabled, out bool isTlsEnabledBool))

Review Comment:
   Changed default value to true



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to