From ec830b58000e860bde546c20c980046831c5c0fb Mon Sep 17 00:00:00 2001 From: Yinyin Liu Date: Wed, 11 Mar 2026 07:29:08 +0100 Subject: [PATCH] increase ExoCmd to 18s to cover new 10s cycle loop for sodistore home --- csharp/App/Backend/DataTypes/Methods/ExoCmd.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/csharp/App/Backend/DataTypes/Methods/ExoCmd.cs b/csharp/App/Backend/DataTypes/Methods/ExoCmd.cs index 8deb34bcf..888ac27ae 100644 --- a/csharp/App/Backend/DataTypes/Methods/ExoCmd.cs +++ b/csharp/App/Backend/DataTypes/Methods/ExoCmd.cs @@ -436,9 +436,9 @@ public static class ExoCmd public static async Task SendConfig(this Installation installation, Configuration config) { - var maxRetransmissions = 4; + var maxRetransmissions = 6; UdpClient udpClient = new UdpClient(); - udpClient.Client.ReceiveTimeout = 2000; + udpClient.Client.ReceiveTimeout = 3000; int port = 9000; Console.WriteLine("Trying to reach installation with IP: " + installation.VpnIp);