This commit is contained in:
Nikolay Kim 2025-03-12 13:55:20 +05:00
parent 3cc7883da5
commit facb30dab2
2 changed files with 3 additions and 2 deletions

View file

@ -69,7 +69,7 @@ ntex-macros = "0.1"
ntex-util = "2.8"
ntex-bytes = "0.1.27"
ntex-server = "2.7"
ntex-h2 = "1.8.1"
ntex-h2 = "1.8.6"
ntex-rt = "0.4.27"
ntex-io = "2.11"
ntex-net = "2.5"

View file

@ -21,7 +21,8 @@ async fn service(msg: ws::Frame) -> Result<Option<ws::Message>, io::Error> {
#[ntex::test]
async fn web_ws() {
env_logger::try_init();
let _ = env_logger::try_init();
let srv = test::server(|| {
App::new().service(web::resource("/").route(web::to(
|req: HttpRequest| async move {