From af1b036612609e2743b3c824ba3c2ea2211faf5f Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 2 Dec 2024 18:24:08 +0700 Subject: [PATCH] #328 10 seconds to open a TCP connection should be enough --- html5/js/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html5/js/Client.js b/html5/js/Client.js index c5544c05..6f0ca769 100644 --- a/html5/js/Client.js +++ b/html5/js/Client.js @@ -121,7 +121,7 @@ class XpraClient { this.reconnect_attempt = 0; this.swap_keys = Utilities.isMacOS(); this.HELLO_TIMEOUT = 30_000; - this.OPEN_TIMEOUT = 2_000; + this.OPEN_TIMEOUT = 10_000; this.PING_TIMEOUT = 15_000; this.PING_GRACE = 2000; this.PING_FREQUENCY = 5000;