From a0ce892a169e5fa32b2595ef950c8927f1ba5de9 Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Wed, 27 Nov 2024 13:48:09 +0100 Subject: [PATCH] TASK: Split projection replay into separate SubscriptionCommandController this allows us to keep the namings short and precise instead of introducing `cr:subscriptionreplayall` see also: https://neos-project.slack.com/archives/C04PYL8H3/p1732629147379509 --- Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php b/Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php index 777d5a9..c06fa32 100644 --- a/Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php +++ b/Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php @@ -257,7 +257,7 @@ abstract protected function getContentRepositoryService( public function iReplayTheProjection(string $projectionName): void { $contentRepositoryMaintainer = $this->getContentRepositoryService(new ContentRepositoryMaintainerFactory()); - $result = $contentRepositoryMaintainer->replayProjection(SubscriptionId::fromString($projectionName)); + $result = $contentRepositoryMaintainer->replaySubscription(SubscriptionId::fromString($projectionName)); Assert::assertNull($result); }