Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxim Deb Natkh committed Feb 2, 2024
1 parent 575ca07 commit d0b5899
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class TForcedOperationActor final
private:
STFUNC(StateWork);

void SendCompactionRequest(const TActorContext& ctx);
void SendRangeOperationRequest(const TActorContext& ctx);

void HandleRangeOperationResponse(
const TResponseType::TPtr& ev,
Expand Down Expand Up @@ -107,12 +107,12 @@ void TForcedOperationActor<TResponseType, TRequestConstructor>::Bootstrap(
RequestInfo->CallContext,
"ForcedRangeOperation");

SendCompactionRequest(ctx);
SendRangeOperationRequest(ctx);
}

template <typename TResponseType, typename TRequestConstructor>
void TForcedOperationActor<TResponseType, TRequestConstructor>::
SendCompactionRequest(const TActorContext& ctx)
SendRangeOperationRequest(const TActorContext& ctx)
{
auto request = TRequestConstructor()(State->GetCurrentRange());

Expand Down Expand Up @@ -156,15 +156,15 @@ void TForcedOperationActor<TResponseType, TRequestConstructor>::
return ReplyAndDie(ctx, {});
}

SendCompactionRequest(ctx);
SendRangeOperationRequest(ctx);
}

template <typename TResponseType, typename TRequestConstructor>
void TForcedOperationActor<TResponseType, TRequestConstructor>::
HandleWakeUp(const TEvents::TEvWakeup::TPtr& ev, const TActorContext& ctx)
{
Y_UNUSED(ev);
SendCompactionRequest(ctx);
SendRangeOperationRequest(ctx);
}

template <typename TResponseType, typename TRequestConstructor>
Expand Down

0 comments on commit d0b5899

Please sign in to comment.