Skip to content

Commit 02c9ea7

Browse files
committed
fix: increase timeout for waiting for signer set calculation
For tests with a follower node, where some signers are listening to the follower node, this can take longer than 30s to run in CI.
1 parent ab90a9d commit 02c9ea7

File tree

1 file changed

+1
-1
lines changed
  • testnet/stacks-node/src/tests/signer

1 file changed

+1
-1
lines changed

testnet/stacks-node/src/tests/signer/v0.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ impl SignerTest<SpawnedSigner> {
249249
// Make sure the signer set is calculated before continuing or signers may not
250250
// recognize that they are registered signers in the subsequent burn block event
251251
let reward_cycle = self.get_current_reward_cycle() + 1;
252-
wait_for(30, || {
252+
wait_for(120, || {
253253
Ok(self
254254
.stacks_client
255255
.get_reward_set_signers(reward_cycle)

0 commit comments

Comments
 (0)