diff --git a/ntex-util/src/future/mod.rs b/ntex-util/src/future/mod.rs index 675b31eb..328c6529 100644 --- a/ntex-util/src/future/mod.rs +++ b/ntex-util/src/future/mod.rs @@ -9,12 +9,14 @@ mod join; mod lazy; mod ready; mod select; +mod on_drop; pub use self::either::Either; pub use self::join::{join, join_all}; pub use self::lazy::{lazy, Lazy}; pub use self::ready::Ready; pub use self::select::select; +pub use self::on_drop::{OnDropFn, OnDropFutureExt}; /// An owned dynamically typed Future for use in cases where /// you can't statically type your result or need to add some indirection. diff --git a/ntex/src/http/test.rs b/ntex/src/http/test.rs index 8a1dd17c..6d9d30d1 100644 --- a/ntex/src/http/test.rs +++ b/ntex/src/http/test.rs @@ -257,7 +257,7 @@ where server, client: Client::build().finish(), } - .set_client_timeout(Seconds(45), Millis(45_000)) + .set_client_timeout(Seconds(60), Millis(60_000)) } #[derive(Debug)]