From 5d9a56a64a4e88762dbd9fa7cdccf2304e3a0fcc Mon Sep 17 00:00:00 2001 From: Ross <44373013+ross1296@users.noreply.github.com> Date: Wed, 5 Nov 2025 13:32:47 +0000 Subject: [PATCH] Update link to Async Daemon documentation --- docs/tutorials/cqrs-with-marten.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorials/cqrs-with-marten.md b/docs/tutorials/cqrs-with-marten.md index 28dbc5acc..f6311784d 100644 --- a/docs/tutorials/cqrs-with-marten.md +++ b/docs/tutorials/cqrs-with-marten.md @@ -772,7 +772,7 @@ Wolverine supports three modes of event subscriptions from Marten: 2. Publishing the events as messages through Wolverine. Essentially calling [`IMessageBus.PublishAsync()`](/guide/messaging/message-bus.html#sending-or-publishing-messages) on each event in strict order. 3. User defined operations on a batch of events at a time, again in strict order that the events are appended to the Marten event store. -In all cases, the Event Subscriptions are running in a background process managed either by Marten itself with its [Async Daemon](/events/projections/async-daemon) +In all cases, the Event Subscriptions are running in a background process managed either by Marten itself with its [Async Daemon](https://martendb.io/events/projections/async-daemon.html) or the [Projection/Subscription Distribution](/guide/durability/marten/distribution) feature in Wolverine. ## Scaling Marten Projections