You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -347,7 +350,7 @@ public function test_catchUpActive_fails_if_called_recursively_without_criteria(
347
350
$this->eventStore->append('event at #1');
348
351
$result = $subscriptionEngine->catchUpActive();
349
352
$this->assertSubscriptions(
350
-
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => 'Failed to catch up all subscriptions while catch up of subscription "s1" is still running'],
353
+
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => RecursiveCatchUpException::class . ': Failed to catch up all subscriptions while catch up of subscription "s1" is still running in file ' . realpath(__DIR__ . '/../../../src/Engine/Exception/RecursiveCatchUpException.php') . ' on line 23'],
351
354
);
352
355
$this->assertEmittedEngineEvents(
353
356
'CatchUpInitiated: Initiated catch-up of subscriptions in states ACTIVE',
@@ -379,7 +382,7 @@ public function test_catchUpActive_fails_if_called_recursively_with_overlapping_
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => 'Failed to catch up subscription "s3" while catch up of subscriptions "s1", "s3" is still running'],
385
+
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => RecursiveCatchUpException::class . ': Failed to catch up subscription "s3" while catch up of subscriptions "s1", "s3" is still running in file ' . realpath(__DIR__ . '/../../../src/Engine/Exception/RecursiveCatchUpException.php') . ' on line 23'],
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => 'Failed to catch up subscription "s3" while catch up of subscriptions "s1", "s3" is still running'],
401
-
['id' => 's2', 'status' => 'ERROR', 'position' => 0, 'error' => 'Failed to catch up subscription "s3" while catch up of subscriptions "s2", "s3" is still running'],
403
+
['id' => 's1', 'status' => 'ERROR', 'position' => 0, 'error' => RecursiveCatchUpException::class . ': Failed to catch up subscription "s3" while catch up of subscriptions "s1", "s3" is still running in file ' . realpath(__DIR__ . '/../../../src/Engine/Exception/RecursiveCatchUpException.php') . ' on line 23'],
404
+
['id' => 's2', 'status' => 'ERROR', 'position' => 0, 'error' => RecursiveCatchUpException::class . ': Failed to catch up subscription "s3" while catch up of subscriptions "s2", "s3" is still running in file ' . realpath(__DIR__ . '/../../../src/Engine/Exception/RecursiveCatchUpException.php') . ' on line 23'],
0 commit comments