This commit is contained in:
Brad Stein 2025-06-17 22:36:23 -05:00
parent 9f8bc315a7
commit a5a44befe2

View File

@ -48,7 +48,7 @@ impl Relay for Handler {
&self,
req: Request<tonic::Streaming<MouseReport>>,
) -> Result<Response<Self::StreamMouseStream>, Status> {
let (tx, rx) = tokio::sync::mpsc::channel(512); // higher burst
let (tx, rx) = tokio::sync::mpsc::channel(4096); // higher burst
let ms = self.ms.clone();
tokio::spawn(async move {