mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27: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]
|
#[ntex_macros::rt_test2]
|
||||||
async fn on_drop() {
|
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(|| {
|
let mut f = pending::<()>().on_drop(|| {
|
||||||
dropped = true;
|
dropped = true;
|
||||||
});
|
});
|
||||||
|
|
|
@ -717,8 +717,8 @@ where
|
||||||
.map_err(|e| log::error!("Cannot set alpn protocol: {:?}", e));
|
.map_err(|e| log::error!("Cannot set alpn protocol: {:?}", e));
|
||||||
Connector::default()
|
Connector::default()
|
||||||
.lifetime(Seconds::ZERO)
|
.lifetime(Seconds::ZERO)
|
||||||
.keep_alive(Seconds(45))
|
.keep_alive(Seconds(60))
|
||||||
.timeout(Millis(45_000))
|
.timeout(Millis(60_000))
|
||||||
.disconnect_timeout(Seconds(5))
|
.disconnect_timeout(Seconds(5))
|
||||||
.openssl(builder.build())
|
.openssl(builder.build())
|
||||||
.finish()
|
.finish()
|
||||||
|
@ -727,14 +727,14 @@ where
|
||||||
{
|
{
|
||||||
Connector::default()
|
Connector::default()
|
||||||
.lifetime(Seconds::ZERO)
|
.lifetime(Seconds::ZERO)
|
||||||
.timeout(Millis(45_000))
|
.timeout(Millis(60_000))
|
||||||
.finish()
|
.finish()
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
Client::build()
|
Client::build()
|
||||||
.connector(connector)
|
.connector(connector)
|
||||||
.timeout(Seconds(45))
|
.timeout(Seconds(60))
|
||||||
.finish()
|
.finish()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue