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:
Aram Drevekenin 2024-11-13 09:30:43 +01:00 committed by GitHub
parent 1dbd14f277
commit cce600fa24
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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() {