mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
wip
This commit is contained in:
parent
df25fd1bb5
commit
b38921f555
2 changed files with 9 additions and 5 deletions
|
@ -83,8 +83,12 @@ mod test {
|
|||
|
||||
#[ntex_macros::rt_test2]
|
||||
async fn on_drop() {
|
||||
let mut dropped = false;
|
||||
let f = OnDropFn::new(|| ());
|
||||
assert!(format!("{:?}", f).contains("OnDropFn"));
|
||||
f.cancel();
|
||||
assert!(f.f.get().is_none());
|
||||
|
||||
let mut dropped = false;
|
||||
let mut f = pending::<()>().on_drop(|| {
|
||||
dropped = true;
|
||||
});
|
||||
|
|
|
@ -717,8 +717,8 @@ where
|
|||
.map_err(|e| log::error!("Cannot set alpn protocol: {:?}", e));
|
||||
Connector::default()
|
||||
.lifetime(Seconds::ZERO)
|
||||
.keep_alive(Seconds(45))
|
||||
.timeout(Millis(45_000))
|
||||
.keep_alive(Seconds(60))
|
||||
.timeout(Millis(60_000))
|
||||
.disconnect_timeout(Seconds(5))
|
||||
.openssl(builder.build())
|
||||
.finish()
|
||||
|
@ -727,14 +727,14 @@ where
|
|||
{
|
||||
Connector::default()
|
||||
.lifetime(Seconds::ZERO)
|
||||
.timeout(Millis(45_000))
|
||||
.timeout(Millis(60_000))
|
||||
.finish()
|
||||
}
|
||||
};
|
||||
|
||||
Client::build()
|
||||
.connector(connector)
|
||||
.timeout(Seconds(45))
|
||||
.timeout(Seconds(60))
|
||||
.finish()
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue