You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@drill.apache.org by ag...@apache.org on 2020/03/13 14:25:53 UTC

[drill] branch master updated (cc51f24 -> 42f9f66)

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

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


    from cc51f24  DRILL-7631: Updates to the Json Structure Parser
     add 42f9f66  DRILL-7637: Add an option to retrieve MapR SSL truststore/keystore credentials using MapR Web Security Manager

No new revisions were added by this update.

Summary of changes:
 .../drill/common/config/DrillProperties.java       |   1 +
 exec/java-exec/pom.xml                             |  28 +++++
 .../java/org/apache/drill/exec/ExecConstants.java  |   1 +
 .../org/apache/drill/exec/ssl/SSLConfigClient.java |  11 +-
 .../org/apache/drill/exec/ssl/SSLConfigServer.java |  32 ++---
 .../drill/exec/ssl/SSLCredentialsProvider.java     | 138 +++++++++++++++++++++
 .../java-exec/src/main/resources/drill-module.conf |   2 +
 .../exec/ssl/SSLCredentialsProviderMaprClient.java |  64 ++++++++++
 .../exec/ssl/SSLCredentialsProviderMaprServer.java |  64 ++++++++++
 exec/jdbc-all/pom.xml                              |   2 +-
 10 files changed, 325 insertions(+), 18 deletions(-)
 create mode 100644 exec/java-exec/src/main/java/org/apache/drill/exec/ssl/SSLCredentialsProvider.java
 create mode 100644 exec/java-exec/srcMapr/main/java/org/apache/drill/exec/ssl/SSLCredentialsProviderMaprClient.java
 create mode 100644 exec/java-exec/srcMapr/main/java/org/apache/drill/exec/ssl/SSLCredentialsProviderMaprServer.java