Skip to content

Commit f6e89b1

Browse files
Fixed DQ Compute actor crash (#12987) (#13030)
1 parent 4f108ba commit f6e89b1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,6 +1674,9 @@ class TDqComputeActorBase : public NActors::TActorBootstrapped<TDerived>
16741674
auto inputIndex = protoSource.GetInputIndex();
16751675
if (auto* sourceInfoPtr = SourcesMap.FindPtr(inputIndex)) {
16761676
auto& sourceInfo = *sourceInfoPtr;
1677+
if (!sourceInfo.AsyncInput)
1678+
continue;
1679+
16771680
protoSource.SetIngressName(sourceInfo.Type);
16781681
const auto& ingressStats = sourceInfo.AsyncInput->GetIngressStats();
16791682
FillAsyncStats(*protoSource.MutableIngress(), ingressStats);

0 commit comments

Comments
 (0)