We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32438b0 commit 317fe0bCopy full SHA for 317fe0b
1 file changed
Framework/Core/src/TimesliceIndex.cxx
@@ -126,7 +126,7 @@ TimesliceIndex::OldestInputInfo TimesliceIndex::setOldestPossibleInput(Timeslice
126
{
127
// Each channel oldest possible input must be monotoically increasing.
128
if (timestamp.value < mChannels[channel.value].oldestForChannel.value) {
129
- LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << " Excpected >= " << mChannels[channel.value].oldestForChannel.value;
+ LOG(error) << "Received bogus oldest possible timeslice " << timestamp.value << " for channel " << channel.value << ". Expected >= " << mChannels[channel.value].oldestForChannel.value;
130
}
131
mChannels[channel.value].oldestForChannel = timestamp;
132
OldestInputInfo result{timestamp, channel};
0 commit comments