Skip to content

Commit

Permalink
Merge pull request #237 from patchlevel/use-migration-store-options
Browse files Browse the repository at this point in the history
Use the right options for the migration process
  • Loading branch information
DavidBadura authored Jan 16, 2025
2 parents c106bdc + 79cde60 commit e19ad8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyInjection/PatchlevelEventSourcingExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ private function configureStoreMigration(array $config, ContainerBuilder $contai
new Reference('event_sourcing.dbal_connection'),
new Reference(EventSerializer::class),
new Reference(HeadersSerializer::class),
$config['store']['options'],
$config['store']['migrate_to_new_store']['options'],
])
->addTag('event_sourcing.doctrine_schema_configurator');

Expand All @@ -656,7 +656,7 @@ private function configureStoreMigration(array $config, ContainerBuilder $contai
new Reference(EventSerializer::class),
new Reference(HeadersSerializer::class),
new Reference('event_sourcing.clock'),
$config['store']['options'],
$config['store']['migrate_to_new_store']['options'],
])
->addTag('event_sourcing.doctrine_schema_configurator');

Expand Down

0 comments on commit e19ad8a

Please sign in to comment.