From a7992e77037353ee4c7d3d480dcbd907961087bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 29 Oct 2019 01:42:44 +0100 Subject: refactor: use core ResourceTable in cli (#3206) --- cli/compilers/ts.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cli/compilers/ts.rs') diff --git a/cli/compilers/ts.rs b/cli/compilers/ts.rs index 9cbaaae09..e38920820 100644 --- a/cli/compilers/ts.rs +++ b/cli/compilers/ts.rs @@ -274,6 +274,7 @@ impl TsCompiler { let compiler_rid = resource.rid; let first_msg_fut = resources::post_message_to_worker(compiler_rid, req_msg) + .expect("Bad compiler rid") .then(move |_| worker) .then(move |result| { if let Err(err) = result { @@ -382,6 +383,7 @@ impl TsCompiler { let compiler_rid = resource.rid; let first_msg_fut = resources::post_message_to_worker(compiler_rid, req_msg) + .expect("Bad compiler rid") .then(move |_| worker) .then(move |result| { if let Err(err) = result { -- cgit v1.2.3