From 449f407885fcfb04c28a39bcef41fcda4ff1e974 Mon Sep 17 00:00:00 2001 From: Eduardo Lemos Date: Fri, 14 Jun 2024 09:41:58 -0300 Subject: [PATCH] =?UTF-8?q?feat(worker-runner):=20Added=20actor=20and=20ha?= =?UTF-8?q?ndle.=20Co-authored-by:=20Luiz=20Felipe=20Gon=C3=A7alves=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- worker/src/runner/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker/src/runner/mod.rs b/worker/src/runner/mod.rs index 193888b..faa3855 100644 --- a/worker/src/runner/mod.rs +++ b/worker/src/runner/mod.rs @@ -72,7 +72,7 @@ pub struct RunnerHandle(mpsc::Sender); impl RunnerHandle { #[allow(dead_code)] - pub async fn send(&self, msg: Msg) { + async fn send(&self, msg: Msg) { _ = self.0.send(msg).await; }