From 3a21419fdb4728e4c737dbcbca764bd3a3e131fa Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Mon, 9 Dec 2019 18:43:10 +0300 Subject: [PATCH] features: Remove _FEATURE suffix from hinted_handoff feature name All the other features are named w/o one. The internal const-s are all different, but I'm fixing it separately. Signed-off-by: Pavel Emelyanov Message-Id: <20191209154310.21649-1-xemul@scylladb.com> --- service/storage_service.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/storage_service.cc b/service/storage_service.cc index 001b680fb0..f3f9f42c53 100644 --- a/service/storage_service.cc +++ b/service/storage_service.cc @@ -114,7 +114,7 @@ static const sstring DIGEST_INSENSITIVE_TO_EXPIRY = "DIGEST_INSENSITIVE_TO_EXPIR static const sstring COMPUTED_COLUMNS_FEATURE = "COMPUTED_COLUMNS"; static const sstring CDC_FEATURE = "CDC"; static const sstring NONFROZEN_UDTS_FEATURE = "NONFROZEN_UDTS"; -static const sstring HINTED_HANDOFF_SEPARATE_CONNECTION_FEATURE = "HINTED_HANDOFF_SEPARATE_CONNECTION_FEATURE"; +static const sstring HINTED_HANDOFF_SEPARATE_CONNECTION_FEATURE = "HINTED_HANDOFF_SEPARATE_CONNECTION"; static const sstring SSTABLE_FORMAT_PARAM_NAME = "sstable_format";