diff --git a/test/actor_run_queue_test.cpp b/test/actor_run_queue_test.cpp index ad03fd7..e235b1c 100644 --- a/test/actor_run_queue_test.cpp +++ b/test/actor_run_queue_test.cpp @@ -61,12 +61,16 @@ int main() { auto app = std::make_shared(); if (false == app->Init( lib_dir, - 4, // 线程池大小 - 2, // ConnectEvent池大小 - 10, // 接收队列最大值警告 - -1, // 接收队列最大值(全局) - 2 // 运行队列最大值(全局) - )) { + // 线程池大小 + 4, + // ConnectEvent池大小 + 2, + // 接收队列最大值警告 + 10, + // 接收队列最大值(全局) + -1, + // 运行队列最大值(全局) + 2)) { LOG(ERROR) << "Init failed"; return -1; }