summaryrefslogtreecommitdiff
path: root/runtime/ops/fetch.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2021-01-04 23:15:52 +0000
committerGitHub <noreply@github.com>2021-01-05 00:15:52 +0100
commitcbc2108525f3a01f4a944104457939b741c9898b (patch)
tree58f85bcd8998101762623737dc272bff81cad15a /runtime/ops/fetch.rs
parent444eca80a93c2631623578c1febdedb43575a911 (diff)
feat(cli/standalone): support runtime flags for deno compile (#8738)
Diffstat (limited to 'runtime/ops/fetch.rs')
-rw-r--r--runtime/ops/fetch.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/ops/fetch.rs b/runtime/ops/fetch.rs
index 0ef99f73d..c2f62d8ee 100644
--- a/runtime/ops/fetch.rs
+++ b/runtime/ops/fetch.rs
@@ -6,13 +6,13 @@ use deno_fetch::reqwest;
pub fn init(
rt: &mut deno_core::JsRuntime,
user_agent: String,
- maybe_ca_file: Option<&str>,
+ ca_data: Option<Vec<u8>>,
) {
{
let op_state = rt.op_state();
let mut state = op_state.borrow_mut();
state.put::<reqwest::Client>({
- http_util::create_http_client(user_agent, maybe_ca_file).unwrap()
+ http_util::create_http_client(user_agent, ca_data).unwrap()
});
}
super::reg_json_async(rt, "op_fetch", deno_fetch::op_fetch::<Permissions>);