From 1b2dbcc26e309086dabbf0a6c8b05d564f8698b1 Mon Sep 17 00:00:00 2001 From: Gleb Natapov Date: Wed, 23 Mar 2016 18:26:49 +0200 Subject: [PATCH] config: enable truncate_request_timeout_in_ms option Option truncate_request_timeout_in_ms is used by truncate. Mark it as used. Message-Id: <20160323162649.GH2282@scylladb.com> (cherry picked from commit 0afd1c6f0aae53eb23e5a5d22d97ae0df4000a57) --- db/config.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/config.hh b/db/config.hh index cdb582dd2f..265d2a6c67 100644 --- a/db/config.hh +++ b/db/config.hh @@ -487,7 +487,7 @@ public: val(cas_contention_timeout_in_ms, uint32_t, 5000, Unused, \ "The time that the coordinator continues to retry a CAS (compare and set) operation that contends with other proposals for the same row." \ ) \ - val(truncate_request_timeout_in_ms, uint32_t, 10000, Unused, \ + val(truncate_request_timeout_in_ms, uint32_t, 10000, Used, \ "The time that the coordinator waits for truncates (remove all data from a table) to complete. The long default value allows for a snapshot to be taken before removing the data. If auto_snapshot is disabled (not recommended), you can reduce this time." \ ) \ val(write_request_timeout_in_ms, uint32_t, 2000, Used, \