From b21fa78a1e8b2c9df549b29454970b39da708a5c Mon Sep 17 00:00:00 2001 From: crowlKats Date: Thu, 27 May 2021 07:23:12 +0200 Subject: feat(cli): add origin data dir to deno info (#10589) Co-authored-by: Nayeem Rahman Co-authored-by: Luca Casonato Co-authored-by: Yoshiya Hinosawa --- runtime/worker.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runtime/worker.rs') diff --git a/runtime/worker.rs b/runtime/worker.rs index 57f4b532f..971449859 100644 --- a/runtime/worker.rs +++ b/runtime/worker.rs @@ -69,7 +69,7 @@ pub struct WorkerOptions { pub no_color: bool, pub get_error_class_fn: Option, pub location: Option, - pub location_data_dir: Option, + pub origin_storage_dir: Option, pub blob_url_store: BlobUrlStore, pub broadcast_channel: InMemoryBroadcastChannel, } @@ -106,7 +106,7 @@ impl MainWorker { options.user_agent.clone(), options.ca_data.clone(), ), - deno_webstorage::init(options.location_data_dir.clone()), + deno_webstorage::init(options.origin_storage_dir.clone()), deno_crypto::init(options.seed), deno_broadcast_channel::init( options.broadcast_channel.clone(), @@ -307,7 +307,7 @@ mod tests { no_color: true, get_error_class_fn: None, location: None, - location_data_dir: None, + origin_storage_dir: None, blob_url_store: BlobUrlStore::default(), broadcast_channel: InMemoryBroadcastChannel::default(), }; -- cgit v1.2.3