Anu Engineer created HDDS-1858:
----------------------------------

             Summary: mTLS support for Ozone is incorrect
                 Key: HDDS-1858
                 URL: https://issues.apache.org/jira/browse/HDDS-1858
             Project: Hadoop Distributed Data Store
          Issue Type: Bug
            Reporter: Josh Elser


Thanks to Josh for reporting that we have missing 'Not' in the if condition 
check.
{code}
if (conf.isGrpcMutualTlsRequired()) {
        return new GrpcTlsConfig(
            null, null, conf.getTrustStoreFile(), false);
      } else {
        return new GrpcTlsConfig(conf.getClientPrivateKeyFile(),
            conf.getClientCertChainFile(), conf.getTrustStoreFile(), true);
      }
{code}

it should have been
{code}
if (!conf.isGrpcMutualTlsRequired()) {
        return new GrpcTlsConfig(
            null, null, conf.getTrustStoreFile(), false);
      } else {
        return new GrpcTlsConfig(conf.getClientPrivateKeyFile(),
            conf.getClientCertChainFile(), conf.getTrustStoreFile(), true);
      }
{code}







--
This message was sent by Atlassian JIRA
(v7.6.14#76016)

---------------------------------------------------------------------
To unsubscribe, e-mail: hdfs-dev-unsubscr...@hadoop.apache.org
For additional commands, e-mail: hdfs-dev-h...@hadoop.apache.org

Reply via email to