Skip to content

Commit

Permalink
TASK: Split projection replay into separate SubscriptionCommandContro…
Browse files Browse the repository at this point in the history
…ller

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
  • Loading branch information
mhsdesign committed Nov 27, 2024
1 parent 0f7c8c5 commit a0ce892
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Behavior/Features/Bootstrap/CRTestSuiteTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit a0ce892

Please sign in to comment.