CI: fix connection failures in asio example tests

This commit is contained in:
Chen Yudong
2021-05-25 15:02:47 +08:00
parent 62359f3442
commit 9703c1a32f
6 changed files with 9 additions and 0 deletions

View File

@@ -86,6 +86,8 @@ void asio_main()
server s(io_context, std::atoi(CONFIG_EXAMPLE_PORT));
std::cout << "ASIO engine is up and running" << std::endl;
io_context.run();
}