diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/examples/hello_runtime.rs | 2 | ||||
-rw-r--r-- | runtime/worker.rs | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs index 34b249e0b..95a82a25f 100644 --- a/runtime/examples/hello_runtime.rs +++ b/runtime/examples/hello_runtime.rs @@ -41,7 +41,7 @@ async fn main() -> Result<(), AnyError> { no_color: false, get_error_class_fn: Some(&get_error_class_name), location: None, - location_data_dir: None, + origin_storage_dir: None, blob_url_store: BlobUrlStore::default(), broadcast_channel: InMemoryBroadcastChannel::default(), }; 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<GetErrorClassFn>, pub location: Option<Url>, - pub location_data_dir: Option<std::path::PathBuf>, + pub origin_storage_dir: Option<std::path::PathBuf>, 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(), }; |