From b55adfa9a83907ce78644dd1d82430ab3feb81ee Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Mon, 13 Oct 2014 03:46:49 -0700 Subject: [PATCH] GUAC-867: Fix comment regarding keep-alive interval. --- guacamole/src/main/webapp/scripts/client-ui.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole/src/main/webapp/scripts/client-ui.js b/guacamole/src/main/webapp/scripts/client-ui.js index a68bbfae0..590403949 100644 --- a/guacamole/src/main/webapp/scripts/client-ui.js +++ b/guacamole/src/main/webapp/scripts/client-ui.js @@ -1015,7 +1015,7 @@ GuacUI.Client.connect = function() { connect_string += "&video=" + encodeURIComponent(mimetype); }); - // Ping server every 10 seconds + // Ping server occasionally to keep HTTP session alive var session_keep_alive = window.setInterval(function _session_keep_alive() { GuacamoleService.KeepAlive.ping(); }, GuacUI.Client.KEEP_ALIVE_INTERVAL);