Skip to content

Commit f2d7def

Browse files
authored
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
1 parent 918ed71 commit f2d7def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/tx/schemeshard/schemeshard_audit_log.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ TParts ImportKindSpecificParts(const Proto& proto) {
298298
template <> TParts ImportKindSpecificParts(const Ydb::Import::ImportFromS3Settings& proto) {
299299
return {
300300
{"import_type", "s3"},
301-
{"export_item_count", ToString(proto.items().size())},
301+
{"import_item_count", ToString(proto.items().size())},
302302
{"import_s3_bucket", proto.bucket()},
303303
//NOTE: take first item's source_prefix as a "good enough approximation"
304304
// (each item has its own source_prefix, but in practice they are all the same)

0 commit comments

Comments
 (0)