We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents be432f5 + 73504d5 commit 23e3464Copy full SHA for 23e3464
ydb/core/tx/schemeshard/schemeshard_import_getters.cpp
@@ -677,7 +677,7 @@ class TSchemeGetter: public TGetterFromS3<TSchemeGetter> {
677
ChangefeedsPrefixes.reserve(objects.size());
678
679
for (const auto& obj : objects) {
680
- const TFsPath& path = obj.GetKey();
+ const TFsPath path = obj.GetKey();
681
if (path.GetName() == "changefeed_description.pb") {
682
ChangefeedsPrefixes.push_back(path.Parent().GetName());
683
}
@@ -699,7 +699,7 @@ class TSchemeGetter: public TGetterFromS3<TSchemeGetter> {
699
700
void ListChangefeeds() {
701
CreateClient();
702
- ListObjects(ImportInfo->GetItemSrcPrefix(ItemIdx));
+ ListObjects(ImportInfo->GetItemSrcPrefix(ItemIdx) + "/");
703
704
705
void DownloadMetadata() {
0 commit comments