Skip to content

Commit

Permalink
Fixed a couple of stress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremydmiller committed Oct 8, 2024
1 parent 4aeac6b commit 01529aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/StressTests/projections_with_IoC_services.cs
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ public async Task use_projection_as_scoped_and_inline_on_martenStore()
services.AddMartenStore<ICustomStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "ioc";
opts.DatabaseSchemaName = "ioc3";
opts.ApplyChangesLockId = opts.ApplyChangesLockId + 9;
}).AddProjectionWithServices<ProductProjection>(ProjectionLifecycle.Inline, ServiceLifetime.Scoped, "MyProjection")
.ApplyAllDatabaseChangesOnStartup();
Expand Down Expand Up @@ -345,7 +345,7 @@ public async Task get_async_shards_with_custom_name_on_martenStore()
services.AddMartenStore<ICustomStore>(opts =>
{
opts.Connection(ConnectionSource.ConnectionString);
opts.DatabaseSchemaName = "ioc";
opts.DatabaseSchemaName = "ioc2";
opts.ApplyChangesLockId = opts.ApplyChangesLockId + 10;
}).AddProjectionWithServices<ProductProjection>(ProjectionLifecycle.Async, ServiceLifetime.Scoped, "MyProjection")
.ApplyAllDatabaseChangesOnStartup();
Expand Down

0 comments on commit 01529aa

Please sign in to comment.