1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 14:49:20 +02: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

@ -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