Revert accidental enabling broken ClockCache in stress test (#8277)

Summary:
From https://github.com/facebook/rocksdb/issues/8261

Pull Request resolved: https://github.com/facebook/rocksdb/pull/8277

Test Plan: briefly make blackbox_crash_test

Reviewed By: zhichao-cao

Differential Revision: D28270648

Pulled By: pdillinger

fbshipit-source-id: 9bfd46c5a1a449165f6597bddb17af910331773f
This commit is contained in:
Peter Dillinger 2021-05-06 16:30:56 -07:00 committed by Facebook GitHub Bot
parent b71b4597e7
commit ecd63b9262
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ default_params = {
"use_direct_reads": lambda: random.randint(0, 1),
"use_direct_io_for_flush_and_compaction": lambda: random.randint(0, 1),
"mock_direct_io": False,
"use_clock_cache": lambda: random.choice([0, 0, 0, 1]),
"use_clock_cache": 0, # currently broken
"use_full_merge_v1": lambda: random.randint(0, 1),
"use_merge": lambda: random.randint(0, 1),
"use_ribbon_filter": lambda: random.randint(0, 1),