Skip to content

Commit

Permalink
Merge pull request #187 from awinogrodzki/fix/remove-fetch-cache-due-…
Browse files Browse the repository at this point in the history
…to-cloudflare-issue

fix: remove fetch `cache: no-store` due to #173
  • Loading branch information
awinogrodzki authored May 26, 2024
2 parents 57c01ef + 6fb8143 commit 367f22b
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/auth/signature-verifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,7 @@ export class UrlKeyFetcher implements KeyFetcher {
}

private async fetchPublicKeysResponse(url: URL): Promise<PublicKeysResponse> {
const res = await fetch(url, {
cache: 'no-store'
});

const res = await fetch(url);
const headers = {};

res.headers.forEach((value, key) => {
Expand Down

0 comments on commit 367f22b

Please sign in to comment.