1
0

Update HTTPSClientPool.cpp

This commit is contained in:
Emagi 2024-12-02 19:28:21 -05:00
parent 1a7061a6c0
commit 2bf5d29c76

View File

@ -718,7 +718,7 @@ void HTTPSClientPool::startPolling() {
for (const auto& clientPair : clients) { for (const auto& clientPair : clients) {
auto server = clientPair.first.first; auto server = clientPair.first.first;
auto port = clientPair.first.second; auto port = clientPair.first.second;
LogWrite(PEERING__DEBUG, 5, "Peering", "%s: startPolling for %s:%u.", __FUNCTION__, server.c_str(), port); LogWrite(PEERING__DEBUG, 5, "Peering", "%s: startPolling for %s:%s.", __FUNCTION__, server.c_str(), port.c_str());
std::async(std::launch::async, &HTTPSClientPool::pollPeerHealth, this, server, port); std::async(std::launch::async, &HTTPSClientPool::pollPeerHealth, this, server, port);
} }