Skip to content

Commit

Permalink
fix modifying irrelevant lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Deb Natkh committed Feb 2, 2024
1 parent f03ed7e commit 575ca07
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,14 +263,13 @@ void TIndexTabletActor::HandleForcedRangeOperation(
{
auto* msg = ev->Get();

LOG_DEBUG(
ctx,
TFileStoreComponents::TABLET,
LOG_DEBUG(ctx, TFileStoreComponents::TABLET,
"%s ForcedRangeOperation request for %lu ranges",
LogTag.c_str(),
msg->Ranges.size());

auto replyError = [&](const NProto::TError& error)
auto replyError = [&] (
const NProto::TError& error)
{
if (ev->Sender == ctx.SelfID) {
return;
Expand Down
2 changes: 1 addition & 1 deletion cloud/filestore/libs/storage/tablet/tablet_ut_data.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2562,7 +2562,7 @@ Y_UNIT_TEST_SUITE(TIndexTabletTest_Data)
UNIT_ASSERT_VALUES_EQUAL(ranges[2], 1);
}

TABLET_TEST(ShouldEnqueuePendingForcedRangeOperation)
TABLET_TEST(ShouldEnqueuePendingForcedCompaction)
{
TTestEnv env;
env.CreateSubDomain("nfs");
Expand Down

0 comments on commit 575ca07

Please sign in to comment.