diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2019-10-29 01:42:44 +0100 |
---|---|---|
committer | Ry Dahl <ry@tinyclouds.org> | 2019-10-28 20:42:44 -0400 |
commit | a7992e77037353ee4c7d3d480dcbd907961087bd (patch) | |
tree | 3d2750c76c29f69742c39c62f3fb2bc1fc0a1734 /cli/ops/process.rs | |
parent | 2f0f236d5656fa2d89a8e1571d03c4bda5f10d38 (diff) |
refactor: use core ResourceTable in cli (#3206)
Diffstat (limited to 'cli/ops/process.rs')
-rw-r--r-- | cli/ops/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/ops/process.rs b/cli/ops/process.rs index 5b59aa030..c6dd2f2d3 100644 --- a/cli/ops/process.rs +++ b/cli/ops/process.rs @@ -99,7 +99,7 @@ fn op_run( let resources = resources::add_child(child); Ok(JsonOp::Sync(json!({ - "rid": resources.child_rid, + "rid": resources.child_rid.unwrap(), "pid": pid, "stdinRid": resources.stdin_rid, "stdoutRid": resources.stdout_rid, |