Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Deb Natkh committed Feb 2, 2024
1 parent d0b5899 commit f0f2217
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ void TIndexTabletActor::HandleForcedRangeOperation(
ctx.SelfID,
LogTag,
Config->GetCompactionRetryTimeout(),
GeTForcedRangeOperationState(),
GetForcedRangeOperationState(),
std::move(requestInfo));
break;

Expand All @@ -315,7 +315,7 @@ void TIndexTabletActor::HandleForcedRangeOperation(
ctx.SelfID,
LogTag,
Config->GetCompactionRetryTimeout(),
GeTForcedRangeOperationState(),
GetForcedRangeOperationState(),
std::move(requestInfo));
break;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -950,7 +950,7 @@ void TIndexTabletActor::HandleHttpInfo_Default(
}

if (IsForcedRangeOperationRunning()) {
DumpCompactionInfo(out, *GeTForcedRangeOperationState());
DumpCompactionInfo(out, *GetForcedRangeOperationState());
} else {
out << "<div class='collapse form-group' id='compact-all'>";
BuildForceCompactionButton(out, TabletID());
Expand Down
2 changes: 1 addition & 1 deletion cloud/filestore/libs/storage/tablet/tablet_state.h
Original file line number Diff line number Diff line change
Expand Up @@ -904,7 +904,7 @@ FILESTORE_DUPCACHE_REQUESTS(FILESTORE_DECLARE_DUPCACHE)
void StartForcedRangeOperation(TVector<ui32> ranges);
void CompleteForcedRangeOperation();

const TForcedRangeOperationStatePtr& GeTForcedRangeOperationState() const
const TForcedRangeOperationStatePtr& GetForcedRangeOperationState() const
{
return ForcedRangeOperationState;
}
Expand Down

0 comments on commit f0f2217

Please sign in to comment.