mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-22 19:49:22 +00:00
Increase timeout in coordinator tests
This commit is contained in:
parent
c41a8ac8f2
commit
f6409d08f3
1 changed files with 2 additions and 2 deletions
|
@ -346,9 +346,9 @@ impl Processor {
|
||||||
|
|
||||||
/// Receive a message from the coordinator as a processor.
|
/// Receive a message from the coordinator as a processor.
|
||||||
pub async fn recv_message(&mut self) -> CoordinatorMessage {
|
pub async fn recv_message(&mut self) -> CoordinatorMessage {
|
||||||
// Set a timeout of 15 minutes to allow effectively any protocol to occur without a fear of
|
// Set a timeout of 20 minutes to allow effectively any protocol to occur without a fear of
|
||||||
// an arbitrary timeout cutting it short
|
// an arbitrary timeout cutting it short
|
||||||
tokio::time::timeout(Duration::from_secs(15 * 60), self.recv_message_inner()).await.unwrap()
|
tokio::time::timeout(Duration::from_secs(20 * 60), self.recv_message_inner()).await.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub async fn set_substrate_key(
|
pub async fn set_substrate_key(
|
||||||
|
|
Loading…
Reference in a new issue