Skip to content

Commit

Permalink
fixup: add 10 more seconds for the mnsync timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
furszy committed Dec 17, 2021
1 parent 616c323 commit ac0d027
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/functional/p2p_quorum_connect.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def check_mn_enabled_count(self, enabled, total):
def wait_until_mnsync_completed(self):
SYNC_FINISHED = [999] * self.num_nodes
synced = [-1] * self.num_nodes
timeout = time.time() + 140
timeout = time.time() + 150
while synced != SYNC_FINISHED and time.time() < timeout:
synced = [node.mnsync("status")["RequestedMasternodeAssets"]
for node in self.nodes]
Expand Down

0 comments on commit ac0d027

Please sign in to comment.