Fix h2 tests (#348)

This commit is contained in:
Nikolay Kim 2024-04-29 14:32:26 +05:00 committed by GitHub
parent c60e7f52b7
commit c9c85f219b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View file

@ -65,7 +65,7 @@ ntex-macros = "0.1.3"
ntex-util = "1.0.1"
ntex-bytes = "0.1.25"
ntex-server = "1.0.5"
ntex-h2 = "0.5.2"
ntex-h2 = "0.5.4"
ntex-rt = "0.4.12"
ntex-io = "1.0.1"
ntex-net = "1.0.1"

View file

@ -263,6 +263,10 @@ where
Connector::default()
.timeout(Millis(30_000))
.openssl(builder.build())
.configure_http2(|cfg| {
cfg.max_header_list_size(256 * 1024);
cfg.max_header_continuation_frames(96);
})
.finish()
}
#[cfg(not(feature = "openssl"))]