Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guide/durability/marten/distribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ opts.Services.AddMarten(m =>
<!-- endSnippet -->

::: tip
This option replaces the Marten `AddAsyncMarten(HotCold)` option and should not be used in combination
This option replaces the Marten `AddAsyncDaemon(HotCold)` option and should not be used in combination
with Marten's own load distribution.
:::

Expand Down
2 changes: 1 addition & 1 deletion src/Persistence/Wolverine.Marten/MartenIntegration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class MartenIntegration : IWolverineExtension, IEventForwarding

/// <summary>
/// Use this when using Wolverine to evenly distribute event projection and subscription
/// work of Marten asynchronous projections. This replaces Marten's <c>AddAsyncMarten(HotCold)</c>
/// work of Marten asynchronous projections. This replaces Marten's <c>AddAsyncDaemon(HotCold)</c>
/// option and should not be used in combination with Marten's own load distribution.
/// </summary>
public bool UseWolverineManagedEventSubscriptionDistribution { get; set; }
Expand Down