workdir: add network-capable operation boundary

This commit is contained in:
2026-08-03 16:14:01 +09:00
parent 0fa36395e7
commit ddadc830ac
32 changed files with 3590 additions and 3241 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ pub async fn dispatch_worker_protocol_method(
) -> Option<Event> {
match method {
Method::ListCompletions { kind, prefix } => {
let entries = handle.completion_entries(kind, &prefix);
let entries = handle.completion_entries(kind, &prefix).await;
Some(Event::Completions { kind, entries })
}
method => {