summaryrefslogtreecommitdiff
path: root/runtime/examples
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2023-05-01 16:42:05 -0400
committerGitHub <noreply@github.com>2023-05-01 16:42:05 -0400
commit913176313b6869eeb29b8d48e0c8d80227fa6544 (patch)
treecc0128b36ea9b22207a3dd41a401ae4ecd131e74 /runtime/examples
parentecc70eb58fd5531f3b93402cf781e93ef2bb4d64 (diff)
perf: lazily create RootCertStore (#18938)
Diffstat (limited to 'runtime/examples')
-rw-r--r--runtime/examples/hello_runtime.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/examples/hello_runtime.rs b/runtime/examples/hello_runtime.rs
index f97c045b2..2e930a03f 100644
--- a/runtime/examples/hello_runtime.rs
+++ b/runtime/examples/hello_runtime.rs
@@ -32,7 +32,7 @@ async fn main() -> Result<(), AnyError> {
extensions: vec![],
startup_snapshot: None,
unsafely_ignore_certificate_errors: None,
- root_cert_store: None,
+ root_cert_store_provider: None,
seed: None,
source_map_getter: None,
format_js_error_fn: None,