You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by cg...@apache.org on 2021/10/19 03:49:52 UTC

[drill] branch master updated: DRILL-8008: Add Config Option to HTTP Plugin to Skip SSL Validation, Fix API Config (#2340)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 76faad9  DRILL-8008: Add Config Option to HTTP Plugin to Skip SSL Validation, Fix API Config (#2340)
76faad9 is described below

commit 76faad9fc1d926f910f3efb922d63631b989865c
Author: Charles S. Givre <cg...@apache.org>
AuthorDate: Mon Oct 18 23:49:42 2021 -0400

    DRILL-8008: Add Config Option to HTTP Plugin to Skip SSL Validation, Fix API Config (#2340)
---
 .../src/main/java/org/apache/drill/exec/store/http/HttpApiConfig.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/storage-http/src/main/java/org/apache/drill/exec/store/http/HttpApiConfig.java b/contrib/storage-http/src/main/java/org/apache/drill/exec/store/http/HttpApiConfig.java
index 6bae806..75f85f5 100644
--- a/contrib/storage-http/src/main/java/org/apache/drill/exec/store/http/HttpApiConfig.java
+++ b/contrib/storage-http/src/main/java/org/apache/drill/exec/store/http/HttpApiConfig.java
@@ -159,7 +159,7 @@ public class HttpApiConfig {
     this.requireTail = builder.requireTail;
 
     // Default to true for backward compatibility, and better security practices
-    this.verifySSLCert = builder().verifySSLCert();
+    this.verifySSLCert = builder.verifySSLCert;
 
     this.inputType = builder.inputType.trim().toLowerCase();