Skip to content

Commit 570ed2a

Browse files
author
Travis Nickels
committed
Update links and example code
1 parent 8fd2dcf commit 570ed2a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

nservicebus/upgrades/azure-functions-service-bus-in-process-isolated-worker.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,7 @@ class HttpSender
129129

130130
[Function("HttpSender")]
131131
public async Task<HttpResponseData> Run(
132-
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequestData req,
133-
FunctionContext functionContext)
132+
[HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequestData req, FunctionContext functionContext)
134133
{
135134
var logger = functionContext.GetLogger<HttpSender>();
136135
logger.LogInformation("C# HTTP trigger function received a request.");
@@ -149,9 +148,9 @@ class HttpSender
149148

150149
## Ensuring consistency in the Isolated Worker model
151150

152-
If `SendsAtomicWithReceive` was previously [enabled in the in-process model](/nservicebus/hosting/azure-functions-service-bus/in-process#message-consistency) (note that it is not enabled by default), maintaining that consistency guarantee in the isolated worker model is important.
151+
If `SendsAtomicWithReceive` was previously [enabled in the in-process model](/nservicebus/hosting/azure-functions-service-bus/in-process#message-consistency) (note that it is not enabled by default), maintaining that consistency guarantee in the isolated worker model is important.
153152

154-
Lower [transaction modes](/transports/transactions.md#transactions) can result in the duplication of outgoing messages otherwise known as [ghost messages](/nservicebus/concepts/glossary.md#ghost-message). To ensure that [consistency](/architecture/consistency) is maintained make sure that all involved message handlers are [idempotent](https://docs.particular.net/architecture/consistency#idempotency).
153+
Lower [transaction modes](/transports/transactions.md#transactions) can result in the duplication of outgoing messages otherwise known as [ghost messages](/nservicebus/concepts/glossary.md#ghost-message). To ensure that [consistency](/architecture/consistency.md) is maintained make sure that all involved message handlers are [idempotent](/architecture/consistency.md#idempotency).
155154

156155
### Using SendsAtomicWithReceive in the In-Process model
157156

0 commit comments

Comments
 (0)