and if there was a problem with certs I guess exce...
# ktor
d
and if there was a problem with certs I guess exception would have been thrown here
Copy code
requireNotNull(getKey(sslKeyAlias, sslPrivateKeyPassword.toCharArray()) == null) {
                    "The specified key $sslKeyAlias doesn't exist in the key store $sslKeyStorePath"
                }
in CommandLine.kt, but it hasn't been thrown
c
Looks like there is a key but no certificate with the specified name
For sure we need to improve diagnostics here
Use
keytool -list
to examine your keystore
d
👍 does it try to get it by the alias? (which is set to default, which is weird because we have another team that seem to use the same alias for the same certificates)
where that exception gets thrown exactly?
@cy looks like Jetty engine works with the same setting, while Netty doesn't
I smell inconsistency