diff options
author | Sean Michael Wykes <sean.wykes@nascent.com.br> | 2021-08-25 09:25:12 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-25 14:25:12 +0200 |
commit | dccf4cbe36d66140f9e35a6ee755c3c440d745f9 (patch) | |
tree | af3114696f1649d77474f69cd3361d58aea34275 /cli/file_fetcher.rs | |
parent | 5d814a4c244d489b4ae51002a0cf1d3c2fe16058 (diff) |
feat(fetch): mTLS client certificates for fetch() (#11721)
This commit adds support for specifying client certificates when using fetch, by means of `Deno.createHttpClient`.
Diffstat (limited to 'cli/file_fetcher.rs')
-rw-r--r-- | cli/file_fetcher.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/file_fetcher.rs b/cli/file_fetcher.rs index 8fda66382..a1729825f 100644 --- a/cli/file_fetcher.rs +++ b/cli/file_fetcher.rs @@ -237,6 +237,7 @@ impl FileFetcher { None, None, unsafely_ignore_certificate_errors, + None, )?, blob_store, }) |