fix(statup): slow startup on some occasions (#3767)
* add debug logs * add log messages * some more logs and possible fix? * remove logs * style(fmt): rustfmt * remove comment
This commit is contained in:
parent
1dbd14f277
commit
cce600fa24
1 changed files with 2 additions and 1 deletions
|
|
@ -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() {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue