Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 committed Jul 29, 2024
1 parent 9745ef9 commit 6b99e64
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions ydb/core/tx/columnshard/transactions/tx_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -285,9 +285,6 @@ void TTxController::OnTabletInit() {
}
}

}
}

std::shared_ptr<TTxController::ITransactionOperator> TTxController::StartProposeOnExecute(
const TTxController::TTxInfo& txInfo, const TString& txBody, NTabletFlatExecutor::TTransactionContext& txc) {
NActors::TLogContextGuard lGuard = NActors::TLogContextBuilder::Build()("method", "TTxController::StartProposeOnExecute")(
Expand Down Expand Up @@ -364,14 +361,6 @@ void TTxController::FinishProposeOnComplete(const ui64 txId, const TActorContext
txOperator->SendReply(Owner, ctx);
}

void TTxController::StartOperators() {
AFL_VERIFY(!StartedFlag);
StartedFlag = true;
for (auto&& i : Operators) {
Y_UNUSED(i.second->OnStartAsync(Owner));
}
}

void TTxController::ITransactionOperator::SwitchStateVerified(const EStatus from, const EStatus to) {
AFL_VERIFY(!Status || *Status == from)("error", "incorrect expected status")("real_state", *Status)("expected", from)("details", DebugString());
Status = to;
Expand Down

0 comments on commit 6b99e64

Please sign in to comment.