Add future OnDrop support

This commit is contained in:
Nikolay Kim 2025-01-15 16:00:09 +05:00
parent 71ba4d28a3
commit 1518356f6f
2 changed files with 3 additions and 1 deletions

View file

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

View file

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