Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
WilyTiger committed Jan 23, 2025
1 parent 39c0366 commit 22f9ec8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 10 deletions.
3 changes: 1 addition & 2 deletions cloud/blockstore/libs/storage/core/config.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,6 +511,7 @@ TDuration MSeconds(ui32 value)
xxx(ScrubbingBandwidth, ui64, 20 )\
xxx(MaxScrubbingBandwidth, ui64, 50 )\
xxx(MinScrubbingBandwidth, ui64, 5 )\
xxx(AutomaticallyEnableBufferCopyingAfterChecksumMismatch, bool, false )\
\
xxx(OptimizeVoidBuffersTransferForReadsEnabled, bool, false )\
xxx(VolumeHistoryCleanupItemCount, ui32, 100'000 )\
Expand All @@ -526,8 +527,6 @@ TDuration MSeconds(ui32 value)
xxx(EnableToChangeStatesFromDiskRegistryMonpage, bool, false )\
xxx(EnableToChangeErrorStatesFromDiskRegistryMonpage, bool, false )\
xxx(CalculateSplittedUsedQuotaMetric, bool, false )\
\
xxx(AutomaticallyEnableBufferCopyingAfterChecksumMismatch, bool, false )\
// BLOCKSTORE_STORAGE_CONFIG_RW

#define BLOCKSTORE_STORAGE_CONFIG(xxx) \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -261,12 +261,7 @@ struct TTestEnv

Runtime.AddLocalService(
MakeStorageServiceId(),
TActorSetupCmd(
new TStorageServiceMock(),
TMailboxType::Simple,
0
)
);
TActorSetupCmd(new TStorageServiceMock(), TMailboxType::Simple, 0));

NKikimr::SetupTabletServices(Runtime);
}
Expand Down
3 changes: 1 addition & 2 deletions cloud/blockstore/libs/storage/partition_nonrepl/ut_env.h
Original file line number Diff line number Diff line change
Expand Up @@ -236,8 +236,7 @@ class TDummyActor final

////////////////////////////////////////////////////////////////////////////////

class TStorageServiceMock final
: public NActors::TActor<TStorageServiceMock>
class TStorageServiceMock final: public NActors::TActor<TStorageServiceMock>
{
public:
TStorageServiceMock()
Expand Down

0 comments on commit 22f9ec8

Please sign in to comment.