Skip to content

Commit 05a2c05

Browse files
Azure#57 Really fix value issue
1 parent 82f5377 commit 05a2c05

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

+1-1
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>

0 commit comments

Comments
 (0)