We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63f5368 commit 419e27cCopy full SHA for 419e27c
src/lib/azure/services/api-management/main.ts
@@ -381,9 +381,12 @@ export class AzureApiManagementManager {
381
382
// Full path construction (without query parameters)
383
string fullPath = context.Request.Url.Path.ToLower();
384
-
+
385
+ // Query arameters
386
+ string query = context.Request.Url.Query.ToLower();
387
388
// Construct final cache key (no Accept header needed for JSON-only APIs)
- return $"{apiName}:{apiVersion}:{fullPath}";
389
+ return $"{apiName}:{apiVersion}:{fullPath}:{query}";
390
}" />
391
<set-variable name="clearCache" value="@(context.Request.Headers.GetValueOrDefault("X-Apim-Clear-Cache", "false").ToLower())" />
392
0 commit comments