net_node: Use DNS resolver singleton

Each thread can use the same resolver.
This commit is contained in:
warptangent 2015-08-14 21:04:29 -07:00
parent b064bad315
commit 7424cfc7b8
No known key found for this signature in database
GPG key ID: 0E490BEBFBE4E92D

View file

@ -321,7 +321,7 @@ namespace nodetool
try
{
addr_list = tools::DNSResolver().get_ipv4(addr_str, avail, valid);
addr_list = tools::DNSResolver::instance().get_ipv4(addr_str, avail, valid);
LOG_PRINT_L4("dns_threads[" << result_index << "] DNS resolve done");
boost::this_thread::interruption_point();
}