Skip to content

Commit b14cff4

Browse files
GrigoriyPAstanislav-shchetinin
authored andcommitted
YQ-4043 fixed hanging in kqp write actor (#14017)
1 parent e36d54a commit b14cff4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/core/kqp/runtime/kqp_write_actor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1294,7 +1294,7 @@ class TKqpDirectWriteActor : public TActorBootstrapped<TKqpDirectWriteActor>, pu
12941294
void Process() {
12951295
if (GetFreeSpace() <= 0) {
12961296
WaitingForTableActor = true;
1297-
} else if (WaitingForTableActor && GetFreeSpace() > MessageSettings.InFlightMemoryLimitPerActorBytes / 2) {
1297+
} else if (WaitingForTableActor) {
12981298
ResumeExecution();
12991299
}
13001300

0 commit comments

Comments
 (0)