Remove epoll instances config

This commit is contained in:
2025-09-12 17:58:40 -04:00
parent 2b8f095d27
commit cd2e15677a
5 changed files with 7 additions and 28 deletions

View File

@@ -234,8 +234,7 @@ int main(int argc, char *argv[]) {
std::cout << "Max request size: " << config->server.max_request_size_bytes
<< " bytes" << std::endl;
std::cout << "I/O threads: " << config->server.io_threads << std::endl;
std::cout << "Epoll instances: " << config->server.epoll_instances
<< std::endl;
std::cout << "Epoll instances: " << config->server.io_threads << std::endl;
std::cout << "Event batch size: " << config->server.event_batch_size
<< std::endl;
std::cout << "Max connections: " << config->server.max_connections