Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksrandall committed Sep 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 71b163b commit 6894b47
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion packages/fetch-http-handler/src/fetch-http-handler.ts
Original file line number Diff line number Diff line change
@@ -112,8 +112,12 @@ export class FetchHttpHandler implements HttpHandler<FetchHttpHandlerConfig> {
headers: new Headers(request.headers),
method: method,
credentials,
cache: this.config!.cache ?? "default",
};
// cache property is not supported in workerd runtime
// TODO: can we feature detect support for cache and not set this property when not supported?
if (this.config?.cache) {
requestOptions.cache = this.config.cache;
}

if (body) {
requestOptions.duplex = "half";

0 comments on commit 6894b47

Please sign in to comment.