Skip to content

Commit

Permalink
added objType
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-shchetinin committed Dec 12, 2024
1 parent 9136ffe commit 675c3e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ydb/library/backup/backup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -516,8 +516,8 @@ void BackupChangefeeds(TDriver driver, const TString& dbPrefix, const TString& p
const auto& topicDescription = descTopicResult.GetTopicDescription();
const auto protoTopicDescription = NYdb::TProtoAccessor::GetProto(topicDescription);

WriteProtoToFile(protoChangeFeedDesc, changefeedDirPath, CHANGEFEED_DESCRIPTION_FILE_NAME);
WriteProtoToFile(protoTopicDescription, changefeedDirPath, TOPIC_DESCRIPTION_FILE_NAME);
WriteProtoToFile(protoChangeFeedDesc, changefeedDirPath, CHANGEFEED_DESCRIPTION_FILE_NAME, "changefeed");
WriteProtoToFile(protoTopicDescription, changefeedDirPath, TOPIC_DESCRIPTION_FILE_NAME, "topic");
}
}

Expand Down

0 comments on commit 675c3e6

Please sign in to comment.