diff options
author | Yiyu Lin <linyiyu1992@gmail.com> | 2023-01-15 12:06:46 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 09:36:46 +0530 |
commit | fd85f840cd707c31d08fa836562127e249c9ff62 (patch) | |
tree | c4847881976069d41d1b53616bdeaf5d073f3af6 /runtime | |
parent | 05ef925eb095ae603f694fe8172ddcbd5b19b9b2 (diff) |
refactor: clean up `unwrap` and `clone` (#17282)
Co-authored-by: Divy Srivastava <dj.srivastava23@gmail.com>
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ops/web_worker/sync_fetch.rs | 3 | ||||
-rw-r--r-- | runtime/permissions/mod.rs | 6 |
2 files changed, 4 insertions, 5 deletions
diff --git a/runtime/ops/web_worker/sync_fetch.rs b/runtime/ops/web_worker/sync_fetch.rs index 9d356f5ee..69adec051 100644 --- a/runtime/ops/web_worker/sync_fetch.rs +++ b/runtime/ops/web_worker/sync_fetch.rs @@ -57,8 +57,7 @@ pub fn op_worker_sync_fetch( let runtime = tokio::runtime::Builder::new_current_thread() .enable_io() .enable_time() - .build() - .unwrap(); + .build()?; let handles: Vec<_> = scripts .into_iter() diff --git a/runtime/permissions/mod.rs b/runtime/permissions/mod.rs index 024aa81d9..5424a3f36 100644 --- a/runtime/permissions/mod.rs +++ b/runtime/permissions/mod.rs @@ -427,7 +427,7 @@ impl UnaryPermission<ReadDescriptor> { self.prompt, ); if prompted { - let resolved_path = resolve_from_cwd(path).unwrap(); + let resolved_path = resolve_from_cwd(path)?; if result.is_ok() { self.granted_list.insert(ReadDescriptor(resolved_path)); } else { @@ -446,7 +446,7 @@ impl UnaryPermission<ReadDescriptor> { display: &str, api_name: &str, ) -> Result<(), AnyError> { - let resolved_path = resolve_from_cwd(path).unwrap(); + let resolved_path = resolve_from_cwd(path)?; let (result, prompted) = self.query(Some(&resolved_path)).check( self.name, Some(api_name), @@ -600,7 +600,7 @@ impl UnaryPermission<WriteDescriptor> { self.prompt, ); if prompted { - let resolved_path = resolve_from_cwd(path).unwrap(); + let resolved_path = resolve_from_cwd(path)?; if result.is_ok() { self.granted_list.insert(WriteDescriptor(resolved_path)); } else { |