This commit is contained in:
Nikolay Kim 2025-03-14 14:57:19 +05:00
parent 77875b46b2
commit 94582f45b4
2 changed files with 4 additions and 2 deletions

View file

@ -8,10 +8,10 @@ use coo_kie::{Cookie, CookieJar};
use crate::io::Filter;
use crate::io::Io;
use crate::server::Server;
use crate::service::ServiceFactory;
#[cfg(feature = "ws")]
use crate::ws::{error::WsClientError, WsClient, WsConnection};
use crate::{rt::System, service::ServiceFactory};
use crate::{time::Millis, time::Seconds, util::Bytes};
use crate::{rt::System, time::Millis, time::Seconds, util::Bytes};
use super::client::{Client, ClientRequest, ClientResponse, Connector};
use super::error::{HttpError, PayloadError};
@ -248,6 +248,7 @@ where
Ok(())
})
});
thread::sleep(std::time::Duration::from_millis(25));
let (system, server, addr) = rx.recv().unwrap();

View file

@ -701,6 +701,7 @@ where
Ok(())
})
});
thread::sleep(std::time::Duration::from_millis(25));
let (system, server, addr) = rx.recv().unwrap();