1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-24 07:53:00 +01:00

add Default impl for ServiceConfig

This commit is contained in:
Nikolay Kim 2018-10-08 15:52:12 -07:00
parent 3984ad45df
commit f99a723643
2 changed files with 8 additions and 2 deletions

View File

@ -57,6 +57,12 @@ impl Clone for ServiceConfig {
}
}
impl Default for ServiceConfig {
fn default() -> Self {
Self::new(KeepAlive::Timeout(5), 0, 0)
}
}
impl ServiceConfig {
/// Create instance of `ServiceConfig`
pub(crate) fn new(

View File

@ -18,7 +18,7 @@ use bytes::Bytes;
use futures::future::{ok, Either};
use futures::{Future, Sink, Stream};
use actix_http::{h1, ws, ResponseError};
use actix_http::{h1, ws, ResponseError, ServiceConfig};
fn ws_service(req: ws::Message) -> impl Future<Item = ws::Message, Error = io::Error> {
match req {
@ -36,7 +36,7 @@ fn test_simple() {
thread::spawn(move || {
Server::new()
.bind("test", addr, move || {
IntoFramed::new(|| h1::Codec::new(false))
IntoFramed::new(|| h1::Codec::new(ServiceConfig::default()))
.and_then(TakeItem::new().map_err(|_| ()))
.and_then(|(req, framed): (_, Framed<_, _>)| {
// validate request