Skip to content

Commit

Permalink
Fix SinkSend argument order (ydb-platform#11548)
Browse files Browse the repository at this point in the history
  • Loading branch information
yumkam authored Nov 13, 2024
1 parent 00bc3bd commit 224fb1c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ class TLocalTaskRunnerActor
const bool finished = sink->IsFinished();
const bool changed = finished || size > 0 || hasCheckpoint;

Parent->SinkSend(ev->Get()->Index, std::move(batch), std::move(maybeCheckpoint), checkpointSize, size, finished, changed);
Parent->SinkSend(ev->Get()->Index, std::move(batch), std::move(maybeCheckpoint), size, checkpointSize, finished, changed);
}

void OnDqTask(TEvTaskRunnerCreate::TPtr& ev) {
Expand Down

0 comments on commit 224fb1c

Please sign in to comment.