From f093c0e9e52f3a6f063d1749dbd2c40bbd601238 Mon Sep 17 00:00:00 2001 From: Joscha Date: Wed, 11 Dec 2024 23:25:25 +0100 Subject: [PATCH] Set default ClientConn command channel bufsize to 1 --- euphoxide/src/client/conn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/euphoxide/src/client/conn.rs b/euphoxide/src/client/conn.rs index 2ee0905..5f39d63 100644 --- a/euphoxide/src/client/conn.rs +++ b/euphoxide/src/client/conn.rs @@ -55,7 +55,7 @@ impl Default for ClientConnConfig { Self { domain: "euphoria.leet.nu".to_string(), human: false, - channel_bufsize: 10, + channel_bufsize: 1, connect_timeout: Duration::from_secs(10), command_timeout: Duration::from_secs(30), ping_interval: Duration::from_secs(30),