From 2111ec04c887a45d07230c230e524cc77393e495 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Mon, 28 Feb 2022 16:19:34 +0100 Subject: [PATCH] Make `SearchProject` a `Foreground` message However, the randomized integration test is still failing: ``` ITERATIONS=100000 SEED=3027 OPERATIONS=200 cargo test --release test_random --package=zed-server -- --nocapture ``` Co-Authored-By: Nathan Sobo --- crates/rpc/src/proto.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/rpc/src/proto.rs b/crates/rpc/src/proto.rs index c5da067f17dd1403631371237cdfd4afb9c6e132..1bfb392db0b7c037b8e4c906b8e61b4b80e9b15b 100644 --- a/crates/rpc/src/proto.rs +++ b/crates/rpc/src/proto.rs @@ -190,8 +190,8 @@ messages!( (RegisterWorktree, Foreground), (RemoveProjectCollaborator, Foreground), (SaveBuffer, Foreground), - (SearchProject, Background), - (SearchProjectResponse, Background), + (SearchProject, Foreground), + (SearchProjectResponse, Foreground), (SendChannelMessage, Foreground), (SendChannelMessageResponse, Foreground), (ShareProject, Foreground),