You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LOG_INF("%s: server is listening on http://%s:%d - starting the main loop\n", __func__, params.hostname.c_str(), params.port);
4513
+
4514
+
// this call blocks the main thread until queue_tasks.terminate() is called
4515
+
ctx_server.queue_tasks.start_loop();
4516
+
4514
4517
clean_up();
4515
-
t.join();
4518
+
//t.join(); // FIXME: http thread may stuck if there is an on-going request. we don't need to care about this for now as the HTTP connection will already be closed at this point, but it's better to fix this
0 commit comments