Skip to content

Commit 29dee53

Browse files
authored
Merge pull request #288748 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 259b880 + c51a879 commit 29dee53

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

articles/azure-functions/durable/durable-functions-external-events.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ import azure.functions as func
6363
import azure.durable_functions as df
6464

6565
def orchestrator_function(context: df.DurableOrchestrationContext):
66-
approved = context.wait_for_external_event('Approval')
66+
approved = yield context.wait_for_external_event('Approval')
6767
if approved:
6868
# approval granted - do the approved action
6969
else:
@@ -169,7 +169,7 @@ def orchestrator_function(context: df.DurableOrchestrationContext):
169169
event2 = context.wait_for_external_event('Event2')
170170
event3 = context.wait_for_external_event('Event3')
171171

172-
winner = context.task_any([event1, event2, event3])
172+
winner = yield context.task_any([event1, event2, event3])
173173
if winner == event1:
174174
# ...
175175
elif winner == event2:
@@ -426,4 +426,4 @@ In this case, the instance ID is hardcoded as *MyInstanceId*.
426426
> [Learn how to implement error handling](durable-functions-error-handling.md)
427427
428428
> [!div class="nextstepaction"]
429-
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)
429+
> [Run a sample that waits for human interaction](durable-functions-phone-verification.md)

articles/cdn/cdn-map-content-to-custom-domain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This tutorial shows how to add a custom domain to an Azure Content Delivery Netw
2121

2222
The endpoint name in your content delivery network profile is a subdomain of azureedge.net. By default when delivering content, the content delivery network profile domain gets included in the URL.
2323

24-
For example, `https://contoso.azureedge.net/photo.png`.
24+
For example, `https://*.azureedge.net/photo.png`.
2525

2626
Azure Content Delivery Network provides the option of associating a custom domain with a content delivery network endpoint. This option delivers content with a custom domain in your URL instead of the default domain.
2727

articles/expressroute/expressroute-connectivity-models.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ If you're colocated in a facility with a cloud exchange, you can request for vir
2222

2323
## <a name="Ethernet"></a>Point-to-point Ethernet connections
2424

25-
You can connect your on-premises datacenters or offices to the Microsoft cloud through point-to-point Ethernet links. Point-to-point Ethernet providers can offer Layer 2 connections, or managed Layer 3 connections between your site and the Microsoft cloud.
25+
You can connect your on-premises datacenters or offices to the Microsoft cloud through point-to-point Ethernet links. Point-to-point Ethernet providers can offer Layer 2 connections.
2626

2727
## <a name="IPVPN"></a>Any-to-any (IPVPN) networks
2828

@@ -41,4 +41,4 @@ You can connect directly into the Microsoft global network at a peering location
4141
* Configure your ExpressRoute connection.
4242
* [Create an ExpressRoute circuit](expressroute-howto-circuit-portal-resource-manager.md)
4343
* [Configure routing](expressroute-howto-routing-portal-resource-manager.md)
44-
* [Link a virtual network to an ExpressRoute circuit](expressroute-howto-linkvnet-portal-resource-manager.md)
44+
* [Link a virtual network to an ExpressRoute circuit](expressroute-howto-linkvnet-portal-resource-manager.md)

articles/frontdoor/front-door-diagnostics.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ The following example JSON snippet shows a health probe log entry for a failed h
128128
"records": [
129129
{
130130
"time": "2021-02-02T07:15:37.3640748Z",
131-
"resourceId": "/SUBSCRIPTIONS/27CAFCA8-B9A4-4264-B399-45D0C9CCA1AB/RESOURCEGROUPS/AFDXPRIVATEPREVIEW/PROVIDERS/MICROSOFT.CDN/PROFILES/AFDXPRIVATEPREVIEW-JESSIE",
131+
"resourceId": "/SUBSCRIPTIONS/mySubscriptionID/RESOURCEGROUPS/myResourceGroup/PROVIDERS/MICROSOFT.CDN/PROFILES/MyProfile",
132132
"category": "FrontDoorHealthProbeLog",
133133
"operationName": "Microsoft.Cdn/Profiles/FrontDoorHealthProbeLog/Write",
134134
"properties": {
@@ -137,9 +137,9 @@ The following example JSON snippet shows a health probe log entry for a failed h
137137
"httpVerb": "HEAD",
138138
"result": "OriginError",
139139
"httpStatusCode": "400",
140-
"probeURL": "http://afdxprivatepreview.blob.core.windows.net:80/",
141-
"originName": "afdxprivatepreview.blob.core.windows.net",
142-
"originIP": "52.239.224.228:80",
140+
"probeURL": "http://www.example.com:80/",
141+
"originName": "www.example.com",
142+
"originIP": "PublicI:Port",
143143
"totalLatencyMilliseconds": "141",
144144
"connectionLatencyMilliseconds": "68",
145145
"DNSLatencyMicroseconds": "1814"

0 commit comments

Comments
 (0)