Skip to content

Commit 12d21e6

Browse files
committed
Fix build failure
1 parent 631e3eb commit 12d21e6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

rust/worker/src/execution/orchestration/spann_knn.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,8 @@ impl Orchestrator for SpannKnnOrchestrator {
191191
}
192192
_ => {
193193
let _: Option<()> = self
194-
.ok_or_terminate(Err(KnnError::SpannSegmentReaderCreationError(e)), ctx);
194+
.ok_or_terminate(Err(KnnError::SpannSegmentReaderCreationError(e)), ctx)
195+
.await;
195196
}
196197
},
197198
}

0 commit comments

Comments
 (0)