From 7153153e4b12d7a84460016a5e0f99abed562d91 Mon Sep 17 00:00:00 2001 From: Chinmay Kamat Date: Tue, 13 Mar 2018 11:50:16 -0700 Subject: [PATCH] Fix enable_pipelined_write output in OPTIONS file Summary: enable_pipelined_write was not set in BuildDBOptions() causing its default value to be dumped in the OPTIONS file Closes https://github.com/facebook/rocksdb/pull/3585 Differential Revision: D7226395 Pulled By: yiwu-arbug fbshipit-source-id: 45a659a48d18103ac9ee74bb8805dd0a6ec12474 --- options/options_helper.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/options/options_helper.cc b/options/options_helper.cc index 7e4feff4a9..b93f3454bb 100644 --- a/options/options_helper.cc +++ b/options/options_helper.cc @@ -96,6 +96,7 @@ DBOptions BuildDBOptions(const ImmutableDBOptions& immutable_db_options, options.listeners = immutable_db_options.listeners; options.enable_thread_tracking = immutable_db_options.enable_thread_tracking; options.delayed_write_rate = mutable_db_options.delayed_write_rate; + options.enable_pipelined_write = immutable_db_options.enable_pipelined_write; options.allow_concurrent_memtable_write = immutable_db_options.allow_concurrent_memtable_write; options.enable_write_thread_adaptive_yield =