1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 09:59:21 +02:00

deprecate HttpServer::no_http2(), update changes

This commit is contained in:
Nikolay Kim
2018-08-07 12:49:40 -07:00
parent 5bd82d4f03
commit 85acc3f8df
2 changed files with 15 additions and 1 deletions

View File

@ -181,6 +181,8 @@ where
}
/// Disable `HTTP/2` support
#[doc(hidden)]
#[deprecated(since = "0.7.4", note = "please use acceptor service with proper ServerFlags parama")]
pub fn no_http2(mut self) -> Self {
self.no_http2 = true;
self
@ -655,6 +657,7 @@ impl<H: IntoHttpHandler> Handler<StopServer> for HttpServer<H> {
});
}
}
fut::ok(())
}),
);
@ -672,4 +675,4 @@ impl<H: IntoHttpHandler> Handler<StopServer> for HttpServer<H> {
Response::reply(Ok(()))
}
}
}
}