Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
proller committed Dec 17, 2024
1 parent 152f1c0 commit 708ccf0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions cloud/filestore/libs/diagnostics/events/profile_events.ev
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ message TProfileLogBlockRange {
optional uint64 NodeId = 1;
optional uint64 Handle = 2;
optional uint64 Offset = 3;

// Requested bytes
optional uint64 Bytes = 4;

// Response bytes
optional uint64 ActualBytes = 5;
};

Expand Down
8 changes: 4 additions & 4 deletions cloud/filestore/libs/diagnostics/profile_log_events_ut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -995,8 +995,8 @@ Y_UNIT_TEST_SUITE(TProfileLogEventsTest)
NProto::TProfileLogRequestInfo profileLogRequest;
FinalizeProfileLogRequestInfo(profileLogRequest, res);
UNIT_ASSERT_VALUES_EQUAL(
profileLogRequest.GetRanges(0).GetActualBytes(),
Size);
Size,
profileLogRequest.GetRanges(0).GetActualBytes());
}

Y_UNIT_TEST(ShouldWriteDataResponseInitializeFieldsCorrectly)
Expand All @@ -1008,8 +1008,8 @@ Y_UNIT_TEST_SUITE(TProfileLogEventsTest)
NProto::TProfileLogRequestInfo profileLogRequest;
FinalizeProfileLogRequestInfo(profileLogRequest, res);
UNIT_ASSERT_VALUES_EQUAL(
profileLogRequest.GetRanges(0).GetActualBytes(),
Size);
Size,
profileLogRequest.GetRanges(0).GetActualBytes());
}

Y_UNIT_TEST(ShouldGetCorrectFuseRequestName)
Expand Down

0 comments on commit 708ccf0

Please sign in to comment.