Skip to content

Commit

Permalink
Merge fe23d4d into sapling-pr-archive-ktf
Browse files Browse the repository at this point in the history
  • Loading branch information
ktf authored Nov 15, 2023
2 parents b4935df + fe23d4d commit 65cefe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Framework/Core/src/TimesliceIndex.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ TimesliceIndex::OldestInputInfo TimesliceIndex::setOldestPossibleInput(Timeslice
{
// Each channel oldest possible input must be monotoically increasing.
if (timestamp.value < mChannels[channel.value].oldestForChannel.value) {
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;
}
mChannels[channel.value].oldestForChannel = timestamp;
OldestInputInfo result{timestamp, channel};
Expand Down

0 comments on commit 65cefe3

Please sign in to comment.