From 2e9e37dd2f505884cb10143f5343dda126e2ca33 Mon Sep 17 00:00:00 2001 From: wufengshan Date: Mon, 21 Feb 2022 10:49:50 +0800 Subject: [PATCH] Signed-off-by: wufengshan Changes to be committed: modified: services/distributeddataservice/framework/utils/constant.cpp --- services/distributeddataservice/framework/utils/constant.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/distributeddataservice/framework/utils/constant.cpp b/services/distributeddataservice/framework/utils/constant.cpp index 910f564af..99bbc3db1 100644 --- a/services/distributeddataservice/framework/utils/constant.cpp +++ b/services/distributeddataservice/framework/utils/constant.cpp @@ -85,13 +85,13 @@ const std::string Constant::KEY_SEPARATOR = "###"; std::vector KvStoreMetaRow::GetKeyFor(const std::string &key) { - std::string str = Constant::Concatenate({KvStoreMetaRow::KEY_PREFIX, Constant::KEY_SEPARATOR, key }); + std::string str = Constant::Concatenate({KvStoreMetaRow::KEY_PREFIX, Constant::KEY_SEPARATOR, key}); return std::vector(str.begin(), str.end()); } std::vector SecretMetaRow::GetKeyFor(const std::string &key) { - std::string str = Constant::Concatenate({SecretMetaRow::KEY_PREFIX, Constant::KEY_SEPARATOR, key }); + std::string str = Constant::Concatenate({SecretMetaRow::KEY_PREFIX, Constant::KEY_SEPARATOR, key}); return std::vector(str.begin(), str.end()); } -- Gitee