Skip to content

Commit 2a4ee15

Browse files
committed
Fix review issues #2
1 parent 105981b commit 2a4ee15

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cloud/blockstore/libs/storage/model/log_title.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ void TLogTitle::Rebuild()
169169
break;
170170
}
171171
case EType::VolumeProxy: {
172-
RebuildForProxy();
172+
RebuildForVolumeProxy();
173173
break;
174174
}
175175
}
@@ -264,7 +264,7 @@ void TLogTitle::RebuildForClient()
264264
CachedPrefix = builder;
265265
}
266266

267-
void TLogTitle::RebuildForProxy()
267+
void TLogTitle::RebuildForVolumeProxy()
268268
{
269269
auto builder = TStringBuilder();
270270

cloud/blockstore/libs/storage/model/log_title.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ class TLogTitle
9292
void RebuildForPartition();
9393
void RebuildForSession();
9494
void RebuildForClient();
95-
void RebuildForProxy();
95+
void RebuildForVolumeProxy();
9696
TString GetPartitionPrefix() const;
9797
};
9898

cloud/blockstore/libs/storage/model/log_title_ut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Y_UNIT_TEST_SUITE(TLogTitleTest)
167167
temporayLogTitle.Get(TLogTitle::EDetails::Brief));
168168
}
169169

170-
Y_UNIT_TEST(GetForProxy)
170+
Y_UNIT_TEST(GetForVolumeProxy)
171171
{
172172
TLogTitle logTitle("disk1", false, GetCycleCount());
173173

0 commit comments

Comments
 (0)