Fix bug in timestamp bound propagation for CLONE
This commit is contained in:
parent
425a3ee3f6
commit
3435ef27ff
|
@ -175,6 +175,11 @@ class BeginLoopCalculator : public CalculatorBase {
|
||||||
cc->Outputs()
|
cc->Outputs()
|
||||||
.Get("CLONE", i)
|
.Get("CLONE", i)
|
||||||
.AddPacket(std::move(input_packet).At(output_timestamp));
|
.AddPacket(std::move(input_packet).At(output_timestamp));
|
||||||
|
} else {
|
||||||
|
// In case the clone input stream is empty, timestamp bound needs to be updated so that downstream calculators don't have to wait
|
||||||
|
// Increment output_timestamp by 1 to signal that the output is empty for current timestamp. This allows downstream calculators
|
||||||
|
// to start processing on their current inputs.
|
||||||
|
cc->Outputs().Get("CLONE", i).SetNextTimestampBound(output_timestamp + 1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user