Skip to content

Commit

Permalink
Do not run continuous verification interval unless we explicitly set …
Browse files Browse the repository at this point in the history
…FLAGS_continuous_verification_interval
  • Loading branch information
archang19 committed Jan 8, 2025
1 parent 3db04ef commit ce0cd10
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tools/db_crashtest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,9 @@ def finalize_and_sanitize(src_params):
if dest_params.get("track_and_verify_wals", 0) == 1:
dest_params["metadata_write_fault_one_in"] = 0
dest_params["write_fault_one_in"] = 0
# Continuous verification fails with secondaries inside NonBatchedOpsStressTest
if dest_params.get("test_secondary") == 1:
dest_params["continuous_verification_interval"] = 0
return dest_params


Expand Down

0 comments on commit ce0cd10

Please sign in to comment.