Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
zverevgeny committed Jan 31, 2024
1 parent ccf5503 commit 7a32c18
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ class TDqSyncComputeActorBase: public TDqComputeActorBase<TDerived, TComputeActo
void PrepareTaskRunner(const IDqTaskRunnerExecutionContext& execCtx) {
YQL_ENSURE(this->TaskRunner);

auto guard = TaskRunner->BindAllocator();
auto guard = TBase::BindAllocator();
auto* alloc = guard.GetMutex();
alloc->SetLimit(MemoryQuota->GetMkqlMemoryLimit());
alloc->SetLimit(this->MemoryQuota->GetMkqlMemoryLimit());

MemoryQuota->TrySetIncreaseMemoryLimitCallback(alloc);
this->MemoryQuota->TrySetIncreaseMemoryLimitCallback(alloc);

this->MemoryQuota->TrySetIncreaseMemoryLimitCallback(alloc);

Expand Down

0 comments on commit 7a32c18

Please sign in to comment.