Add missing timer to avoid a panic (#334)
This commit is contained in:
parent
32da1d6fd2
commit
8da52538be
1 changed files with 2 additions and 1 deletions
|
@ -18,7 +18,7 @@ use hyper::body::Incoming;
|
|||
use hyper::server::conn::{http1, http2};
|
||||
use hyper::service::service_fn;
|
||||
use hyper::{http, Request, Response, StatusCode, Version};
|
||||
use hyper_util::rt::TokioExecutor;
|
||||
use hyper_util::rt::{TokioExecutor, TokioTimer};
|
||||
use once_cell::sync::Lazy;
|
||||
use parking_lot::Mutex;
|
||||
use socket2::SockRef;
|
||||
|
@ -436,6 +436,7 @@ impl WsServer {
|
|||
let websocket_upgrade_fn =
|
||||
mk_websocket_upgrade_fn(server, restrictions.clone(), restrict_path, peer_addr);
|
||||
let conn_fut = http1::Builder::new()
|
||||
.timer(TokioTimer::new())
|
||||
.header_read_timeout(Duration::from_secs(10))
|
||||
.serve_connection(tls_stream, service_fn(websocket_upgrade_fn))
|
||||
.with_upgrades();
|
||||
|
|
Loading…
Reference in a new issue