summaryrefslogtreecommitdiff
path: root/cli/ops/fetch.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-12-12 00:36:18 +0100
committerGitHub <noreply@github.com>2020-12-12 00:36:18 +0100
commit31935c6b8d8f763a5cf809b940427024da01a71c (patch)
tree7e35a4b806570c40dd0eae8378db77be12335ace /cli/ops/fetch.rs
parent39c86df4e587bf45e446bd944bff4a91b8a63be3 (diff)
refactor(cli): more options on Worker (#8724)
Diffstat (limited to 'cli/ops/fetch.rs')
-rw-r--r--cli/ops/fetch.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/cli/ops/fetch.rs b/cli/ops/fetch.rs
index 8c1a2b39c..18e9e9c9f 100644
--- a/cli/ops/fetch.rs
+++ b/cli/ops/fetch.rs
@@ -1,4 +1,5 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+use crate::http_util;
use crate::permissions::Permissions;
use deno_fetch::reqwest;
@@ -7,7 +8,8 @@ pub fn init(rt: &mut deno_core::JsRuntime, maybe_ca_file: Option<&str>) {
let op_state = rt.op_state();
let mut state = op_state.borrow_mut();
state.put::<reqwest::Client>({
- crate::http_util::create_http_client(maybe_ca_file).unwrap()
+ http_util::create_http_client(http_util::get_user_agent(), maybe_ca_file)
+ .unwrap()
});
}
super::reg_json_async(rt, "op_fetch", deno_fetch::op_fetch::<Permissions>);