From c21282de1acb7a3a9bb7e3d631779f035487abcd Mon Sep 17 00:00:00 2001 From: skedia Date: Mon, 15 Apr 2024 23:47:32 -0700 Subject: [PATCH] Fix build --- rust/worker/src/execution/orchestration/compact.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/worker/src/execution/orchestration/compact.rs b/rust/worker/src/execution/orchestration/compact.rs index 1c0e0058a49..e8b9dc61942 100644 --- a/rust/worker/src/execution/orchestration/compact.rs +++ b/rust/worker/src/execution/orchestration/compact.rs @@ -179,7 +179,7 @@ impl CompactOrchestrator { ); let task = wrap(operator, input, self_address); - match self.dispatcher.send(task).await { + match self.dispatcher.send(task, None).await { Ok(_) => (), Err(e) => { // TODO: log an error and reply to caller