Skip to content

Commit 00fde99

Browse files
committed
add Liangying's review comments.
1 parent b0c0ff6 commit 00fde99

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/azure-signalr/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
href: signalr-concept-serverless-development-config.md
6868
- name: SignalR Service bindings for Azure Functions reference
6969
href: ../azure-functions/functions-bindings-signalr-service.md
70-
- name: Upstream endpoints
70+
- name: Configure upstream endpoints
7171
href: concept-upstream.md
7272
- name: High availability
7373
items:

articles/azure-signalr/concept-upstream.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
title: Upstream endpoints in Azure SignalR Service
3-
description: Introduction to upstream endpoints settings and upstream message protocols.
3+
description: Introduction to upstream endpoints settings and upstream message protocols.
44
author: vicancy
55
ms.service: signalr
66
ms.topic: conceptual
77
ms.date: 12/09/2022
88
ms.author: lianwei
99
---
1010

11-
# Upstream endpoints (preview)
11+
# Upstream endpoints
1212

1313
The upstream endpoints feature allows Azure SignalR Service to send messages and connection events to a set of endpoints in serverless mode. You can use upstream endpoints to invoke a hub method from clients in serverless mode to notify endpoints when client connections are connected or disconnected.
1414

@@ -21,7 +21,7 @@ An upstream endpoint's settings consist of a list of order-sensitive items:
2121

2222
* A URL template, which specifies where messages send to.
2323
* A set of rules.
24-
* Authentication configurations.
24+
* Authentication configurations.
2525

2626
When an event is fired, an item's rules are checked one by one in order. Messages will be sent to the first matching item's upstream endpoint URL.
2727

@@ -32,7 +32,7 @@ You can parameterize the upstream endpoint URL to support various patterns. Ther
3232
|Predefined parameter|Description|
3333
|---------|---------|
3434
|{hub}| A hub is a concept of Azure SignalR Service. A hub is a unit of isolation. The scope of users and message delivery is constrained to a hub.|
35-
|{category}| A category can be one of the following values: <ul><li>**connections**: Connection lifetime events. It's fired when a client connection is connected or disconnected. It includes connected and disconnected events.</li><li>**messages**: Fired when clients invoke a hub method. It includes all other events, except those in the **connections** category.</li></ul>|
35+
|{category}| A category can be one of the following values: <ul><li>**connections**: Connection lifetime events. It's fired when a client connection is connected or disconnected. It includes connected and disconnected events.</li><li>**messages**: Fired when clients invoke a hub method. It includes all other events, except events in the **connections** category.</li></ul>|
3636
|{event}| For the **messages** category, an event is the target in an [invocation message](https://github.com/dotnet/aspnetcore/blob/master/src/SignalR/docs/specs/HubProtocol.md#invocation-message-encoding) that clients send. For the **connections** category, only *connected* and *disconnected* are used.|
3737

3838
These predefined parameters can be used in the URL pattern. Parameters will be replaced with a specified value when you're evaluating the upstream endpoint URL. For example:
@@ -50,11 +50,11 @@ http://host.com/chat/api/messages/broadcast
5050

5151
### Key Vault secret reference in URL template settings
5252

53-
The upstream endpoint URL is not encrypted. You can secure sensitive upstream endpoints using Key Vault and access them with a managed identity.
53+
The upstream endpoint URL isn't encrypted. You can secure sensitive upstream endpoints using Key Vault and access them with a managed identity.
5454

5555
To enable managed identity in your SignalR service instance and grant it Key Vault access:
5656

57-
1. Add a system-assigned identity or user-assigned identity. See [How to add managed identity in Azure Portal](./howto-use-managed-identity.md#add-a-system-assigned-identity)
57+
1. Add a system-assigned identity or user-assigned identity. See [How to add managed identity in Azure portal](./howto-use-managed-identity.md#add-a-system-assigned-identity)
5858
t
5959
2. Grant secret read permission for the managed identity in the Access policies in the Key Vault. See [Assign a Key Vault access policy using the Azure portal](../key-vault/general/assign-access-policy-portal.md)
6060

@@ -95,7 +95,7 @@ You can configure authentication for each upstream endpoint setting separately.
9595
- `None`
9696
- `ManagedIdentity`
9797
98-
When you select `ManagedIdentity`, you must enable a managed identity in Azure SignalR Service in advance and optionally specify a resource. See [Managed identities for Azure SignalR Service](howto-use-managed-identity.md) for details.
98+
When you select `ManagedIdentity`, you must first enable a managed identity in Azure SignalR Service and optionally, specify a resource. See [Managed identities for Azure SignalR Service](howto-use-managed-identity.md) for details.
9999
100100
## Configure upstream endpoint settings via the Azure portal
101101

0 commit comments

Comments
 (0)