Skip to content

Commit fbcd502

Browse files
authored
Merge pull request #276243 from MicrosoftDocs/repo_sync_working_branch
Confirm merge from repo_sync_working_branch to main to sync with https://github.com/MicrosoftDocs/azure-docs (branch main)
2 parents ea1dcc7 + 1b3d9e3 commit fbcd502

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

articles/azure-web-pubsub/howto-use-managed-identity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Azure Web PubSub Service is a fully managed service, so you can't use a managed
6161
- The Application ID URI of the service principal.
6262

6363
> [!IMPORTANT]
64-
> Using empty resource actully acquire a token targets to Microsoft Graph. As today, Microsoft Graph enables token encryption so it's not available for application to authenticate the token other than Microsoft Graph. In common practice, you should always create a service principal to represent your upstream target. And set the **Application ID** or **Application ID URI** of the service principal you've created.
64+
> Using empty resource actually acquire a token targets to Microsoft Graph. As today, Microsoft Graph enables token encryption so it's not available for application to authenticate the token other than Microsoft Graph. In common practice, you should always create a service principal to represent your upstream target. And set the **Application ID** or **Application ID URI** of the service principal you've created.
6565
6666
#### Authentication in a function app
6767

articles/load-balancer/load-balancer-insights.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ The dashboard tabs currently available are:
4545
* Connection Monitors
4646
* Metric Definitions
4747

48-
[!NOTE] Displays on the Flow Distribution tab are not supported for load balancer backend pools configured by IP addresses. These are virtual machine-level metrics and can be seen by from the virtual machines / VMSS resources associated with the IP addresses attached instead.
48+
>[!NOTE]
49+
>Displays on the Flow Distribution tab are not supported for load balancer backend pools configured by IP addresses. These are virtual machine-level metrics and can be seen by from the virtual machines / VMSS resources associated with the IP addresses attached instead.
4950
5051
### Overview tab
5152

articles/machine-learning/how-to-deploy-models-from-huggingface.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,9 @@ ml_client.online_deployments.begin_create_or_update(ManagedOnlineDeployment(
8383
instance_type="Standard_DS2_v2",
8484
instance_count=1,
8585
)).wait()
86+
endpoint = ml_client.online_endpoints.get(endpoint_name)
8687
endpoint.traffic = {"demo": 100}
87-
ml_client.begin_create_or_update(endpoint_name).result()
88+
ml_client.begin_create_or_update(endpoint).result()
8889
```
8990

9091
### Test the deployed model

articles/synapse-analytics/how-to-recover-workspace-after-tenant-move.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,8 @@ $subscriptionId="Provide the subscription ID (GUID) of the subscription containi
149149
$resourceGroupName="Provide the name of the resource group containing your workspace"
150150
$workspaceName="Provide the name of your workspace"
151151
152+
$contentType = 'application/json'
153+
152154
$token = (Get-AzAccessToken -ResourceUrl "https://management.azure.com/").Token
153155
$header = @{Authorization="Bearer $token"}
154156

0 commit comments

Comments
 (0)