Skip to content

Commit

Permalink
fix(statup): slow startup on some occasions (#3767)
Browse files Browse the repository at this point in the history
* add debug logs

* add log messages

* some more logs and possible fix?

* remove logs

* style(fmt): rustfmt

* remove comment
  • Loading branch information
imsnif authored Nov 13, 2024
1 parent 1dbd14f commit cce600f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion zellij-server/src/route.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1004,13 +1004,14 @@ pub(crate) fn route_thread_main(
match receiver.recv() {
Some((instruction, err_ctx)) => {
err_ctx.update_thread_ctx();
let rlocked_sessions = session_data.read().to_anyhow().with_context(err_context)?;
let mut handle_instruction = |instruction: ClientToServerMsg,
mut retry_queue: Option<
&mut VecDeque<ClientToServerMsg>,
>|
-> Result<bool> {
let mut should_break = false;
let rlocked_sessions =
session_data.read().to_anyhow().with_context(err_context)?;
match instruction {
ClientToServerMsg::Key(key, raw_bytes, is_kitty_keyboard_protocol) => {
if let Some(rlocked_sessions) = rlocked_sessions.as_ref() {
Expand Down

0 comments on commit cce600f

Please sign in to comment.