mirror of https://github.com/facebook/rocksdb.git
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:
parent
b71b4597e7
commit
ecd63b9262
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue