Remove old Integration TLS function

This commit is contained in:
Robert Parker
2019-05-30 13:39:59 +01:00
committed by Arthur Barr
parent 612fe3a9ec
commit 6f677e2a59
2 changed files with 0 additions and 57 deletions

View File

@@ -139,11 +139,5 @@ func configureSSOTLS(p12TrustStore tls.KeyStoreData) (string, error) {
return "", fmt.Errorf("Failed to find existing truststore %s: %v", p12TrustStore.Keystore.Filename, err)
}
// Add OIDC cert to the truststore
err = p12TrustStore.Keystore.Add(os.Getenv("MQ_OIDC_CERTIFICATE"), "OIDC")
if err != nil {
return "", err
}
return webKeyStoreName, nil
}