CI: fix connection failures in asio example tests

* Original commit: espressif/esp-idf@b3b71bc8ab
This commit is contained in:
Chen Yudong
2021-05-25 15:02:47 +08:00
committed by gabsuren
parent cc0f2b3cf0
commit cb2375827b
6 changed files with 9 additions and 0 deletions

View File

@ -102,5 +102,7 @@ extern "C" void app_main(void)
server s(io_context, std::atoi(CONFIG_EXAMPLE_PORT));
std::cout << "ASIO engine is up and running" << std::endl;
io_context.run();
}