Skip to content

Commit 6e00fd0

Browse files
authored
fix(test): bump quorum_data_request_expiration_timeout to fix p2p_quorum_data.py (#5281)
## Issue being fixed or feature implemented fix `p2p_quorum_data.py` test broken by #5276 ## What was done? adjust data request expiration timeout in tests ## How Has This Been Tested? `./test/functional/test_runner.py p2p_quorum_data.py` ## Breaking Changes n/a ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [x] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation **For repository code-owners and collaborators only** - [x] I have assigned this pull request to a milestone
1 parent 1a96a98 commit 6e00fd0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/functional/test_framework/test_framework.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1000,8 +1000,8 @@ def set_dash_test_params(self, num_nodes, masterodes_count, extra_args=None, fas
10001000

10011001
# This is nRequestTimeout in dash-q-recovery thread
10021002
self.quorum_data_thread_request_timeout_seconds = 10
1003-
# This is EXPIRATION_TIMEOUT in CQuorumDataRequest
1004-
self.quorum_data_request_expiration_timeout = 300
1003+
# This is EXPIRATION_TIMEOUT + EXPIRATION_BIAS in CQuorumDataRequest
1004+
self.quorum_data_request_expiration_timeout = 360
10051005

10061006
def set_dash_dip8_activation(self, activate_after_block):
10071007
self.dip8_activation_height = activate_after_block

0 commit comments

Comments
 (0)