Skip to content

Commit 1702715

Browse files
authored
review legacy docs (#7058)
1 parent 02ee991 commit 1702715

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

nservicebus/gateway/troubleshooting.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Gateway Troubleshooting
33
summary: How to solve common issues that arise with the gateway
4-
reviewed: 2022-12-16
4+
reviewed: 2025-03-21
55
redirects:
66
- nservicebus/gateway-trouble-shooting
77
- nservicebus/gateway-service-point-manager
@@ -28,15 +28,15 @@ Url reservation add failed, Error: 183
2828
Cannot create a file when that file already exists.
2929
```
3030

31-
This warning can usually be safely ignored. However when urlacls are corrupted the same behaviors occurs. This problem will manifest in that everything seems to be working correctly except that the gateway will not be listening on the port.
31+
This warning can usually be safely ignored. However, if the urlacls are corrupted the same behavior as above occurs. In this case, everything may appear to be functioning normally, except that the gateway will not be listening on the port.
3232

33-
To verify this problem navigate to the url (in this case `http://localhost:25894/MyEndpoint/`) in a browser. If the gateway is listening the following will be received:
33+
To verify this issue, navigate to the url (in this case `http://localhost:25894/MyEndpoint/`) in a browser. If the gateway is listening, the following will be received:
3434

3535
```
3636
EndpointName:MyEndpoint - Status: Ok
3737
```
3838

39-
If the gateway is not listening no response will be received.
39+
If the gateway is not listening, no response will be received.
4040

4141
To clean and recreate the url acl manually run the following commands from an admin console:
4242

security-advisories/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Security Advisories
3-
reviewed: 2022-12-05
3+
reviewed: 2025-03-18
44
suppressRelated: true
55
---
66

transports/azure-service-bus/configuration.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Configuration
33
summary: Explains the configuration options
44
component: ASBS
5-
reviewed: 2022-11-15
5+
reviewed: 2025-03-21
66
---
77

88
## Configuring an endpoint
@@ -26,7 +26,7 @@ partial: custom-token-credentials
2626
These settings control how the transport creates entities in the Azure Service Bus namespace.
2727

2828
> [!WARNING]
29-
> Entity creation settings are applied only at creation time of the corresponding entities; they are not updated on subsequent startups.
29+
> Entity creation settings are applied only at the time the corresponding entities are created; they are not updated on subsequent startups.
3030
3131
partial: access-rights
3232

transports/sql/sql-statements.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: SQL Server transport SQL statements
33
summary: Overview of the SQL statements used to manage the SQL Server transport
44
component: SqlTransport
5-
reviewed: 2022-11-24
5+
reviewed: 2025-03-21
66
versions: '[3,)'
77
redirects:
88
- nservicebus/sqlserver/runtime-sql
@@ -21,21 +21,21 @@ partial: create-subscriptions-table
2121

2222
### Creating table structure in production
2323

24-
There are some special considerations for creating the queue tables in production environments.
24+
When creating the queue tables in production environments, there are specific considerations to keep in mind.
2525

2626

2727
#### NServiceBus installers
2828

29-
When using NServiceBus [installers](/nservicebus/operations/installers.md) the queue tables are created automatically before the endpoint is started.
29+
When using NServiceBus [installers](/nservicebus/operations/installers.md), the queue tables are created automatically before the endpoint is started.
3030

31-
the user account under which the installation of the host is performed must have `CREATE TABLE` and `VIEW DEFINITION` permissions on the database where the queues are to be created. The account under which the service runs does not have to have these permissions. Standard read/write/delete permissions (e.g. `db_datawriter` and `db_datareader` roles) are enough.
31+
The user account under which the installation of the host is performed, must have `CREATE TABLE` and `VIEW DEFINITION` permissions on the database where the queues are to be created. The service account does not need to have these permissions. Standard read/write/delete permissions (e.g. `db_datawriter` and `db_datareader` roles) are sufficient.
3232

3333

3434
#### Scripted
3535

36-
Using NServiceBus installers does not allow review of the actual T-SQL statements that are going be executed. For that reason, some prefer to store the actual scripts in a version control system.
36+
Using NServiceBus installers does not allow review of the actual T-SQL statements that are going be executed. Hence, some prefer to store the actual scripts in a version control system.
3737

38-
The script above is parametrized at execution time with the queue name so it cannot be used as-is. Alternatively, the scripts could be generated from the development or staging environments, then directly executed on a production environment by DBAs to replicate that table structure.
38+
The script above is parametrized at execution time with the queue name so it cannot be used as-is. Alternatively, the scripts could be generated from the development or staging environments,and then executed on a production environment by DBAs to replicate that table structure.
3939

4040
To capture the script for later execution use SQL Server Management Studio. Connect to the server (e.g. development or staging) and right-click the database with the queue tables. From "Tasks" menu choose "Generate Scripts..." and generate the scripts for relevant tables.
4141

0 commit comments

Comments
 (0)