From fcafee62fea8ce80525b9041f2b3b108c857f521 Mon Sep 17 00:00:00 2001 From: Masakazu Kitajo Date: Wed, 7 Jun 2023 10:50:14 -0600 Subject: [PATCH] Avoid crash on traffic_server shutdown --- plugins/certifier/certifier.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/certifier/certifier.cc b/plugins/certifier/certifier.cc index 9ee902e36c9..583df1c754a 100644 --- a/plugins/certifier/certifier.cc +++ b/plugins/certifier/certifier.cc @@ -102,7 +102,9 @@ class SslLRUList SslData *next = nullptr; SslData() = default; - ~SslData() { TSDebug(PLUGIN_NAME, "Deleting ssl data for [%s]", commonName.c_str()); } + ~SslData() + { /* TSDebug(PLUGIN_NAME, "Deleting ssl data for [%s]", commonName.c_str()); */ + } }; using scoped_SslData = std::unique_ptr;