Skip to content

Commit

Permalink
chore: get rid of annoying cache size limit (useless anyway) Error
Browse files Browse the repository at this point in the history
  • Loading branch information
a-hariti committed Apr 27, 2024
1 parent 20b9d92 commit c9b0171
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/build/resolveOpenAPI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ async function resolveOpenAPI(): Promise<DeRefedOpenAPI> {
}
}
const response = await fetch(
`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`,
{
cache: 'no-cache',
}
);
return await response.json();
}
Expand Down

0 comments on commit c9b0171

Please sign in to comment.