Skip to content

Commit 82f5377

Browse files
Azure#57 Fix missing comma
1 parent ff2765c commit 82f5377

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/Call out to an HTTP endpoint and cache the response.policy.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<inbound>
1010
<base />
1111
<!-- Check if lat/long has already been cached for this place and fetch it into a variable. -->
12-
<cache-lookup-value key="@(context.Request.MatchedParameters.GetValueOrDefault("place="""))" variable-name="latlong"/>
12+
<cache-lookup-value key="@(context.Request.MatchedParameters.GetValueOrDefault("place=",""))" variable-name="latlong"/>
1313

1414
<!-- If no lat/long found, use external API to get lat/long of the place and cache it. -->
1515
<choose>
@@ -53,4 +53,4 @@
5353
<on-error>
5454
<base />
5555
</on-error>
56-
</policies>
56+
</policies>

0 commit comments

Comments
 (0)