Skip to content

Commit f474c7f

Browse files
yumkamKamil Khamitov
authored and
Kamil Khamitov
committed
CA: fix inverted condition in TInputChannelInfo::IsPaused (ydb-platform#14094)
1 parent 3a1953b commit f474c7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ydb/library/yql/dq/actors/compute/dq_compute_actor_impl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -855,7 +855,7 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
855855
}
856856

857857
bool IsPaused() const {
858-
return PendingWatermarks.empty() || PendingCheckpoint.has_value();
858+
return !PendingWatermarks.empty() || PendingCheckpoint.has_value();
859859
}
860860

861861
void Pause(TInstant watermark) {

0 commit comments

Comments
 (0)