summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorijon <[email protected]>2023-03-21 13:37:06 +0300
committerijon <[email protected]>2023-03-21 13:37:06 +0300
commit7d31e99b2e04f7818c644e4561beca6cb3ed263b (patch)
treee85a1d464b13d759d1c5707d29179bbe534d6b79
parent848a97392d4f254e8a671a25d1ef512fa08e4119 (diff)
schemeshard, auditlog: fix output of user attribute values
-rw-r--r--ydb/core/tx/schemeshard/schemeshard_audit_log_fragment.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/schemeshard/schemeshard_audit_log_fragment.cpp b/ydb/core/tx/schemeshard/schemeshard_audit_log_fragment.cpp
index b24db727fba..a5181c88d3a 100644
--- a/ydb/core/tx/schemeshard/schemeshard_audit_log_fragment.cpp
+++ b/ydb/core/tx/schemeshard/schemeshard_audit_log_fragment.cpp
@@ -530,7 +530,7 @@ TChange ExtractUserAttrChange(const NKikimrSchemeOp::TModifyScheme& tx) {
result.Remove.push_back(key);
} else {
str.clear();
- str << key << ": " << "value";
+ str << key << ": " << value;
result.Add.push_back(str);
}
}