Skip to content

Commit

Permalink
fix(snapshot-producer): register legacymodule
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneD committed Jan 20, 2025
1 parent 980d66f commit b7f48c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public ProducerModule(

protected override void Load(ContainerBuilder builder)
{
builder.RegisterModule(new LegacyModule(_configuration, _services, _loggerFactory));
RegisterProjectionSetup(builder);

builder
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"ConnectionStrings": {
"Events": "Server=(localdb)\\mssqllocaldb;Database=EFProviders.InMemory.MunicipalityRegistry;Trusted_Connection=True;TrustServerCertificate=True;",
"LegacyProjections": "Server=(localdb)\\mssqllocaldb;Database=EFProviders.InMemory.MunicipalityRegistry;Trusted_Connection=True;TrustServerCertificate=True;",
"ProducerProjections": "Server=(localdb)\\mssqllocaldb;Database=EFProviders.InMemory.MunicipalityRegistry;Trusted_Connection=True;TrustServerCertificate=True;",
"ProducerProjectionsAdmin": "Server=(localdb)\\mssqllocaldb;Database=EFProviders.InMemory.MunicipalityRegistry;Trusted_Connection=True;TrustServerCertificate=True;"
},
Expand Down

0 comments on commit b7f48c2

Please sign in to comment.