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
7d260fea2f
commit
222ab299a8
2 changed files with 6 additions and 6 deletions
|
@ -257,7 +257,7 @@ where
|
|||
server,
|
||||
client: Client::build().finish(),
|
||||
}
|
||||
.set_client_timeout(Seconds(60), Millis(60_000))
|
||||
.set_client_timeout(Seconds(90), Millis(90_000))
|
||||
}
|
||||
|
||||
#[derive(Debug)]
|
||||
|
|
|
@ -718,7 +718,7 @@ where
|
|||
Connector::default()
|
||||
.lifetime(Seconds::ZERO)
|
||||
.keep_alive(Seconds(60))
|
||||
.timeout(Millis(60_000))
|
||||
.timeout(Millis(90_000))
|
||||
.disconnect_timeout(Seconds(5))
|
||||
.openssl(builder.build())
|
||||
.finish()
|
||||
|
@ -727,14 +727,14 @@ where
|
|||
{
|
||||
Connector::default()
|
||||
.lifetime(Seconds::ZERO)
|
||||
.timeout(Millis(60_000))
|
||||
.timeout(Millis(90_000))
|
||||
.finish()
|
||||
}
|
||||
};
|
||||
|
||||
Client::build()
|
||||
.connector(connector)
|
||||
.timeout(Seconds(60))
|
||||
.timeout(Seconds(90))
|
||||
.finish()
|
||||
};
|
||||
|
||||
|
@ -929,7 +929,7 @@ impl TestServer {
|
|||
|
||||
WsClient::build(self.url(path))
|
||||
.address(self.addr)
|
||||
.timeout(Seconds(30))
|
||||
.timeout(Seconds(60))
|
||||
.openssl(builder.build())
|
||||
.take()
|
||||
.finish()
|
||||
|
@ -945,7 +945,7 @@ impl TestServer {
|
|||
} else {
|
||||
WsClient::build(self.url(path))
|
||||
.address(self.addr)
|
||||
.timeout(Seconds(30))
|
||||
.timeout(Seconds(60))
|
||||
.finish()
|
||||
.unwrap()
|
||||
.connect()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue