| 12 | } |
| 13 | |
| 14 | acl::connect_pool* connect_manager::create_pool(const char* addr, |
| 15 | size_t max, size_t idx) |
| 16 | { |
| 17 | acl::connect_pool* pool = new connect_pool(addr, max, idx); |
| 18 | pool->set_conns_min(min_conns_); |
| 19 | pool->set_idle_ttl(idle_ttl_); |
| 20 | return pool; |
| 21 | } |
nothing calls this directly
no test coverage detected