Skip to content

Commit 054c107

Browse files
authored
Avoid crash on traffic_server shutdown (#9792)
1 parent 867c48c commit 054c107

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/certifier/certifier.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,9 @@ class SslLRUList
102102
SslData *next = nullptr;
103103

104104
SslData() = default;
105-
~SslData() { TSDebug(PLUGIN_NAME, "Deleting ssl data for [%s]", commonName.c_str()); }
105+
~SslData()
106+
{ /* TSDebug(PLUGIN_NAME, "Deleting ssl data for [%s]", commonName.c_str()); */
107+
}
106108
};
107109

108110
using scoped_SslData = std::unique_ptr<SslLRUList::SslData>;

0 commit comments

Comments
 (0)