Add thread name for SSLHandshakerThread.

This commit is contained in:
Ray Jenkins 2022-01-24 20:00:00 -06:00
parent 59726928bb
commit ff49bfaeb5
1 changed files with 1 additions and 1 deletions

View File

@ -1356,7 +1356,7 @@ void Net2::initTLS(ETLSInitState targetState) {
for (int i = 0; i < threadsToStart; ++i) {
++sslHandshakerThreadsStarted;
sslHandshakerPool->addThread(new SSLHandshakerThread());
sslHandshakerPool->addThread(new SSLHandshakerThread(), "fdb-ssl-connect");
}
}
}