Bump plugin manager channel sizes to account for more plugins

This commit is contained in:
Gregory Schier
2026-01-05 15:10:54 -08:00
parent e818c349cc
commit dc51de2af1
2 changed files with 3 additions and 3 deletions

View File

@@ -37,7 +37,7 @@ impl PluginRuntimeServerWebsocket {
}
async fn accept_connection(&self, stream: TcpStream) {
let (to_plugin_tx, mut to_plugin_rx) = mpsc::channel::<InternalEvent>(128);
let (to_plugin_tx, mut to_plugin_rx) = mpsc::channel::<InternalEvent>(2048);
let mut app_to_plugin_events_tx = self.app_to_plugin_events_tx.lock().await;
*app_to_plugin_events_tx = Some(to_plugin_tx);