Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ydb/core/tx/schemeshard/schemeshard_import_getters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ class TSchemeGetter: public TGetterFromS3<TSchemeGetter> {
ChangefeedsPrefixes.reserve(objects.size());

for (const auto& obj : objects) {
const TFsPath& path = obj.GetKey();
const TFsPath path = obj.GetKey();
if (path.GetName() == "changefeed_description.pb") {
ChangefeedsPrefixes.push_back(path.Parent().GetName());
}
Expand All @@ -699,7 +699,7 @@ class TSchemeGetter: public TGetterFromS3<TSchemeGetter> {

void ListChangefeeds() {
CreateClient();
ListObjects(ImportInfo->GetItemSrcPrefix(ItemIdx));
ListObjects(ImportInfo->GetItemSrcPrefix(ItemIdx) + "/");
}

void DownloadMetadata() {
Expand Down
Loading