diff --git a/db_stress_tool/db_stress_test_base.cc b/db_stress_tool/db_stress_test_base.cc index baaacaa5a..1df4aa4de 100644 --- a/db_stress_tool/db_stress_test_base.cc +++ b/db_stress_tool/db_stress_test_base.cc @@ -2328,11 +2328,10 @@ void StressTest::Open() { if ((options_.enable_blob_files || options_.enable_blob_garbage_collection || FLAGS_allow_setting_blob_options_dynamically) && - (FLAGS_use_merge || FLAGS_backup_one_in > 0 || - FLAGS_best_efforts_recovery)) { + (FLAGS_use_merge || FLAGS_best_efforts_recovery)) { fprintf(stderr, "Integrated BlobDB is currently incompatible with Merge, " - "backup/restore, and best-effort recovery\n"); + "and best-effort recovery\n"); exit(1); } diff --git a/tools/db_crashtest.py b/tools/db_crashtest.py index d7e7d7055..ae37f9706 100644 --- a/tools/db_crashtest.py +++ b/tools/db_crashtest.py @@ -279,7 +279,6 @@ blob_params = { "blob_garbage_collection_age_cutoff": lambda: random.choice([0.0, 0.25, 0.5, 0.75, 1.0]), # The following are currently incompatible with the integrated BlobDB "use_merge": 0, - "backup_one_in": 0, } ts_params = {