mirror of https://github.com/fafhrd91/actix-net
Remove redundant lifetime
This commit is contained in:
parent
2af0dfd7f8
commit
97fe358927
|
@ -92,7 +92,7 @@ impl<T: AsyncRead + AsyncWrite + Unpin + 'static, P> Service for OpensslAcceptor
|
||||||
let acc = acc;
|
let acc = acc;
|
||||||
tokio_openssl::accept(&acc, io).await
|
tokio_openssl::accept(&acc, io).await
|
||||||
}
|
}
|
||||||
.boxed_local::<'static>(),
|
.boxed_local(),
|
||||||
params: Some(params),
|
params: Some(params),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue