diff options
-rw-r--r-- | src/config.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/config.rs b/src/config.rs index 9000f01..655ef48 100644 --- a/src/config.rs +++ b/src/config.rs @@ -55,6 +55,7 @@ impl Config { options.set_credentials(&credentials.username, &credentials.password); } options.set_keep_alive(Duration::from_secs(5)); + options.set_max_packet_size(10 * 1024 * 1024, 10 * 1024 * 1024); Client::new(options, 10) } } |