Skip to content

Commit ef36031

Browse files
authored
Fixing duplicate tags (Azure#1817)
When there's duplicate XML style tags used for import into docs, the last one is the one that matches. Changing tag to be unique.
1 parent ea31422 commit ef36031

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deploy-arm-templates-az-cli.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -148,11 +148,11 @@ wait_for_completion $operation_id
148148
scoringUri=$(echo $response | jq -r '.properties' | jq -r '.scoringUri')
149149
# </get_endpoint>
150150

151-
# <get_access_token>
151+
# <get_endpoint_access_token>
152152
response=$(curl -H "Content-Length: 0" --location --request POST "https://management.azure.com/subscriptions/$SUBSCRIPTION_ID/resourceGroups/$RESOURCE_GROUP/providers/Microsoft.MachineLearningServices/workspaces/$WORKSPACE/onlineEndpoints/$ENDPOINT_NAME/token?api-version=$API_VERSION" \
153153
--header "Authorization: Bearer $TOKEN")
154154
accessToken=$(echo $response | jq -r '.accessToken')
155-
# </get_access_token>
155+
# </get_endpoint_access_token>
156156

157157
# <score_endpoint>
158158
curl --location --request POST $scoringUri \

0 commit comments

Comments
 (0)