Skip to content

Commit

Permalink
Fixed CMake build for C++ SDK in Debug Client (#14003)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gazizonoki committed Jan 29, 2025
1 parent ca1b96d commit 5496e30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/debug/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ class TDebugClient::TImpl: public TClientImplCommon<TDebugClient::TImpl> {
};

Debug::ActorChainRequest request;
request.SetChainLength(settings.ChainLength_);
request.SetWorkUsec(settings.WorkUsec_);
request.SetNoTailChain(settings.NoTailChain_);
request.set_chainlength(settings.ChainLength_);
request.set_workusec(settings.WorkUsec_);
request.set_notailchain(settings.NoTailChain_);

Connections_->Run<Debug::V1::DebugService, Debug::ActorChainRequest, Debug::ActorChainResponse>(
std::move(request),
Expand Down

0 comments on commit 5496e30

Please sign in to comment.