net_node: Use DNS resolver singleton
Each thread can use the same resolver.
This commit is contained in:
parent
b064bad315
commit
7424cfc7b8
|
@ -321,7 +321,7 @@ namespace nodetool
|
||||||
|
|
||||||
try
|
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");
|
LOG_PRINT_L4("dns_threads[" << result_index << "] DNS resolve done");
|
||||||
boost::this_thread::interruption_point();
|
boost::this_thread::interruption_point();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue