mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix h2 tests (#348)
This commit is contained in:
parent
c60e7f52b7
commit
c9c85f219b
2 changed files with 5 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -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"))]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue