Skip to content

Commit 01567d5

Browse files
authored
streamlookup: fix monitoring/counters (backport #11071) (#11126)
1 parent 3718b73 commit 01567d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/library/yql/dq/actors/input_transforms/dq_input_transform_lookup.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class TInputTransformStreamLookupBase
256256
}
257257
++row;
258258
}
259-
if (Batches && (!KeysForLookup->empty() || !ReadyQueue.RowCount())) {
259+
if (Batches && (!KeysForLookup->empty() || ReadyQueue.RowCount())) {
260260
Batches->Inc();
261261
LruHits->Add(ReadyQueue.RowCount());
262262
LruMiss->Add(AwaitingQueue.size());

0 commit comments

Comments
 (0)