Skip to content

Commit

Permalink
feat(worker-runner): Added actor and handle.
Browse files Browse the repository at this point in the history
Co-authored-by: Luiz Felipe Gonçalves <[email protected]>
  • Loading branch information
lemosep committed Jun 14, 2024
1 parent ac6870a commit 449f407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worker/src/runner/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ pub struct RunnerHandle(mpsc::Sender<Msg>);

impl RunnerHandle {
#[allow(dead_code)]
pub async fn send(&self, msg: Msg) {
async fn send(&self, msg: Msg) {
_ = self.0.send(msg).await;
}

Expand Down

0 comments on commit 449f407

Please sign in to comment.