Skip to content

Commit d3d96cd

Browse files
committed
* client only uses a single thread again by default
1 parent f09841b commit d3d96cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class client {
2020
protected:
2121
std::optional<netlib::socket> _socket;
2222
addrinfo *_endpoint_addr = nullptr;
23-
netlib::thread_pool _thread_pool; //= netlib::thread_pool::create<1,1>();
23+
netlib::thread_pool _thread_pool = netlib::thread_pool::create<1,1>();
2424
public:
2525
client()
2626
{

0 commit comments

Comments
 (0)