Skip to content

Commit 97d0252

Browse files
authored
Weekly recent PRs review
1 parent c83379d commit 97d0252

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

nservicebus/bridge/scenarios.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Migrating from one transport to another can be a complex task. In-flight message
1818
- Messages in the error queue, waiting to be retried (or picked up by ServiceControl)
1919
- Messages in ServiceControl, waiting to be retried
2020

21-
When planning to move or retire an endpoint, re-configuring the routing for any endpoint is straightforward. NServiceBus automatically handles new messages sent after the endpoint is redeployed on the new transport. However in-flight messages must be carefully considered to ensure these messages arrive at the correct destination, which is not always the place where these messages were originally sent to.
21+
When planning to move an endpoint, NServiceBus automatically handles new messages sent after the endpoint is redeployed on the new transport. However in-flight messages must be carefully considered to ensure these messages arrive at the correct destination, which is not always the place where these messages were originally sent.
2222

2323
For example, consider a system migrating from the MSMQ transport to SQL Server. Migrating all endpoints at once is risky, as in-flight messages would remain stuck in MSMQ. Instead, the NServiceBus Messaging Bridge allows endpoints to be migrated incrementally, enabling safe and controlled transitions between transports.
2424

@@ -35,7 +35,7 @@ B[Endpoint B] <---> D[Endpoint D]
3535

3636
### Initiating the migration
3737

38-
To slowly migrate endpoints to the other transport say SQL Server and to prevent moving all endpoints at once, the migration will start with two endpoints and move them to the SQL Server transport.
38+
To slowly migrate endpoints to the other transport (in this case, SQL Server) and to prevent moving all endpoints at once, the migration will start with two endpoints and move them to the SQL Server transport.
3939

4040
```mermaid
4141
flowchart LR

samples/transactional-session/aspnetcore-webapi/sample.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ include: webhost-warning
1313

1414
This sample shows how to send messages and modify data in a database atomically within the scope of a web request using the `NServiceBus.TransactionalSession` package with ASP.NET Core. The ASP.NET Core application hosts a [send-only endpoint](/nservicebus/hosting/#self-hosting-send-only-hosting). The operations are triggered by an incoming HTTP request to ASP.NET Core that will manage the `ITransactionalSession` lifetime using a request middleware.
1515

16-
> **_NOTE:_** From 8.2.0, `NServiceBus.Persistence.Sql.TransactionalSession` is supported in send-only endpoints. Refer to the [documentation](/nservicebus/transactional-session/#remote-processor) for more details.
16+
> [!NOTE]
17+
> Starting in version 8.2.0, `NServiceBus.Persistence.Sql.TransactionalSession` is supported in send-only endpoints. Refer to the [documentation](/nservicebus/transactional-session/#remote-processor) for more details.
1718
1819
## Prerequisites
1920

0 commit comments

Comments
 (0)