From 530248cd3e0d35bb5f2f5dbb026e8569ad79d81c Mon Sep 17 00:00:00 2001 From: Bastian Waidelich Date: Fri, 11 Aug 2023 12:19:10 +0200 Subject: [PATCH] Update Neos.ContentRepository.Core/Classes/ContentRepository.php --- Neos.ContentRepository.Core/Classes/ContentRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {