Skip to content

Commit

Permalink
Increase timeout in coordinator tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kayabaNerve committed Feb 18, 2024
1 parent c41a8ac commit f6409d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/coordinator/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,9 @@ impl Processor {

/// Receive a message from the coordinator as a processor.
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
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(
Expand Down

0 comments on commit f6409d0

Please sign in to comment.