Skip to content

Commit

Permalink
fix test/actor_run_queue_test.cpp codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
lkpworkspace committed Jan 2, 2025
1 parent a012ea5 commit bf51d9e
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions test/actor_run_queue_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,16 @@ int main() {
auto app = std::make_shared<myframe::App>();
if (false == app->Init(
lib_dir,
4, // 线程池大小
2, // ConnectEvent池大小
10, // 接收队列最大值警告
-1, // 接收队列最大值(全局)
2 // 运行队列最大值(全局)
)) {
// 线程池大小
4,
// ConnectEvent池大小
2,
// 接收队列最大值警告
10,
// 接收队列最大值(全局)
-1,
// 运行队列最大值(全局)
2)) {
LOG(ERROR) << "Init failed";
return -1;
}
Expand Down

0 comments on commit bf51d9e

Please sign in to comment.