We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 969d96e commit 554e34aCopy full SHA for 554e34a
src/build/resolveOpenAPI.ts
@@ -34,7 +34,8 @@ async function resolveOpenAPI(): Promise<DeRefedOpenAPI> {
34
return cachedResonse;
35
}
36
const response = await fetch(
37
- `https://raw.githubusercontent.com/getsentry/sentry-api-schema/${SENTRY_API_SCHEMA_SHA}/openapi-derefed.json`
+ `https://raw.githubusercontent.com/getsentry/sentry-api-schema/${SENTRY_API_SCHEMA_SHA}/openapi-derefed.json`,
38
+ {cache: 'no-store'}
39
);
40
cachedResonse = await response.json();
41
return cachedResonse!;
0 commit comments