Skip to content

Commit 22d2a49

Browse files
jepett0CyberROFL
andauthored
Apply suggestions from code review
Co-authored-by: Ilnaz Nizametdinov <[email protected]>
1 parent 0a57b8a commit 22d2a49

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/library/backup/backup.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -935,7 +935,7 @@ void RemoveClusterDirectory(const TDriver& driver, const TString& path) {
935935

936936
void RemoveClusterDirectoryRecursive(const TDriver& driver, const TString& path) {
937937
LOG_I("Remove temporary directory " << path.Quote() << " in database");
938-
TStatus status = NConsoleClient::RemoveDirectoryRecursive(driver, path, {});
938+
TStatus status = NConsoleClient::RemoveDirectoryRecursive(driver, path);
939939
VerifyStatus(status, TStringBuilder() << "Remove temporary directory " << path.Quote() << " failed");
940940
}
941941

ydb/public/lib/ydb_cli/common/recursive_remove.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ namespace NInternal {
7171
) {
7272
TVector<const NScheme::TSchemeEntry*> entriesToRemoveInSecondPass;
7373
for (const NScheme::TSchemeEntry& entry : std::ranges::subrange(begin, end)) {
74-
if (NInternal::MightHaveDependents(entry.Type)) {
74+
if (MightHaveDependents(entry.Type)) {
7575
entriesToRemoveInSecondPass.emplace_back(&entry);
7676
continue;
7777
}

0 commit comments

Comments
 (0)