diff options
author | ijon <[email protected]> | 2025-01-27 10:17:45 +0300 |
---|---|---|
committer | GitHub <[email protected]> | 2025-01-27 10:17:45 +0300 |
commit | f2d7def9144cc59522108736495e954b379c7df3 (patch) | |
tree | 362dc7a27233d1b25e6ad643a54f2c849d831003 | |
parent | 918ed7183256390928f358a91a74700e5d459595 (diff) |
audiglog: fix item_count field name for the imports (#13390)
Fix audit record field name (`import_item_count`) for the (database/tables) import operations.
KIKIMR-21797
-rw-r--r-- | ydb/core/tx/schemeshard/schemeshard_audit_log.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/core/tx/schemeshard/schemeshard_audit_log.cpp b/ydb/core/tx/schemeshard/schemeshard_audit_log.cpp index d0910e7cd85..9141da0ab69 100644 --- a/ydb/core/tx/schemeshard/schemeshard_audit_log.cpp +++ b/ydb/core/tx/schemeshard/schemeshard_audit_log.cpp @@ -298,7 +298,7 @@ TParts ImportKindSpecificParts(const Proto& proto) { template <> TParts ImportKindSpecificParts(const Ydb::Import::ImportFromS3Settings& proto) { return { {"import_type", "s3"}, - {"export_item_count", ToString(proto.items().size())}, + {"import_item_count", ToString(proto.items().size())}, {"import_s3_bucket", proto.bucket()}, //NOTE: take first item's source_prefix as a "good enough approximation" // (each item has its own source_prefix, but in practice they are all the same) |