maskit commented on code in PR #10958:
URL: https://github.com/apache/trafficserver/pull/10958#discussion_r1505060990
##########
src/iocore/net/SSLConfig.cc:
##########
@@ -542,7 +544,13 @@ SSLConfigParams::initialize()
// can cause HTTP layer to connect using SSL. But only if SSL
// initialization hasn't failed already.
client_ctx = this->getCTX(this->clientCertPath, this->clientKeyPath,
this->clientCACertFilename, this->clientCACertPath);
- if (!client_ctx) {
+ if (client_ctx) {
+ return;
+ }
+ // Can't get SSL client context.
+ if (this->clientCertExitOnLoadError) {
+ Fatal("Can't initialize the SSL client, HTTPS in remap rules will not
function");
Review Comment:
Maybe? I wonder how it's controlled where we no longer have traffic_manager.
https://github.com/apache/trafficserver/blob/7ccdbd30ac8f03667d734fa40f04f1c250eed2c8/include/tscore/Diags.h#L86-L92
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]