summaryrefslogtreecommitdiff
path: root/cli/ops/workers.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2019-10-29 01:42:44 +0100
committerRy Dahl <ry@tinyclouds.org>2019-10-28 20:42:44 -0400
commita7992e77037353ee4c7d3d480dcbd907961087bd (patch)
tree3d2750c76c29f69742c39c62f3fb2bc1fc0a1734 /cli/ops/workers.rs
parent2f0f236d5656fa2d89a8e1571d03c4bda5f10d38 (diff)
refactor: use core ResourceTable in cli (#3206)
Diffstat (limited to 'cli/ops/workers.rs')
-rw-r--r--cli/ops/workers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/workers.rs b/cli/ops/workers.rs
index 670ca6b47..809aa5d9b 100644
--- a/cli/ops/workers.rs
+++ b/cli/ops/workers.rs
@@ -250,7 +250,7 @@ fn op_host_post_message(
let d = Vec::from(data.unwrap().as_ref()).into_boxed_slice();
- resources::post_message_to_worker(rid, d)
+ resources::post_message_to_worker(rid, d)?
.wait()
.map_err(|e| DenoError::new(ErrorKind::Other, e.to_string()))?;