diff --git a/vnt-cli/src/command/client.rs b/vnt-cli/src/command/client.rs index 59a9545..23eb7ca 100644 --- a/vnt-cli/src/command/client.rs +++ b/vnt-cli/src/command/client.rs @@ -26,7 +26,7 @@ impl CommandClient { } }; let udp = UdpSocket::bind("127.0.0.1:0")?; - udp.set_read_timeout(Some(Duration::from_secs(2)))?; + udp.set_read_timeout(Some(Duration::from_secs(5)))?; udp.connect(SocketAddr::V4(SocketAddrV4::new( Ipv4Addr::new(127, 0, 0, 1), port,