diff --git a/Neos.ContentRepository.Core/Classes/ContentRepository.php b/Neos.ContentRepository.Core/Classes/ContentRepository.php index e0314b7086f..a5c181a14ec 100644 --- a/Neos.ContentRepository.Core/Classes/ContentRepository.php +++ b/Neos.ContentRepository.Core/Classes/ContentRepository.php @@ -167,7 +167,7 @@ public function catchUpProjection(string $projectionClassName, CatchUpOptions $o $streamName = VirtualStreamName::all(); $eventStream = $this->eventStore->load($streamName); if ($options->maximumSequenceNumber !== null) { - //$eventStream = $eventStream->withMaximumSequenceNumber($options->maximumSequenceNumber); + $eventStream = $eventStream->withMaximumSequenceNumber($options->maximumSequenceNumber); } $eventApplier = function (EventEnvelope $eventEnvelope) use ($projection, $catchUpHook, $options) {