This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gohtmlclient. from 82ea5ca Merge branch 'personal/sunweaver/add-Jenkinsfile' into 'master' new 6593242 src/x2gokdrivehtmlclient.js: Send client keepalive ping every 10 seconds, server expects at least one ping every 30 seconds. new c689ec2 Merge branch 'personal/sunweaver/send-client-keepalive' into 'master' The 2 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: src/x2gokdrivehtmlclient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gohtmlclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gohtmlclient. commit 65932424be50fde8f044610fdee668b3665d3337 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 16 16:15:24 2024 +0100 src/x2gokdrivehtmlclient.js: Send client keepalive ping every 10 seconds, server expects at least one ping every 30 seconds. --- src/x2gokdrivehtmlclient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/x2gokdrivehtmlclient.js b/src/x2gokdrivehtmlclient.js index 9cfd1c8..a905ab8 100644 --- a/src/x2gokdrivehtmlclient.js +++ b/src/x2gokdrivehtmlclient.js @@ -898,7 +898,7 @@ X2GoKDriveHTMLClient let app = this; if (!this.__sendAlive) { - //send client version to server every minute to keep alive the connection + //send client version to server every 10 seconds to keep alive the connection this.__sendAlive = setInterval(function () { let serverVersion = parseInt(app.__serverVersion); @@ -916,7 +916,7 @@ X2GoKDriveHTMLClient { app.sendKeepAlive(); } - }, 60000); + }, 10000); } } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gohtmlclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gohtmlclient. commit c689ec26fb65ca26f6190051442fc48aeee34ad1 Merge: 82ea5ca 6593242 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Jan 16 15:44:32 2024 +0000 Merge branch 'personal/sunweaver/send-client-keepalive' into 'master' src/x2gokdrivehtmlclient.js: Send client keepalive ping every 10 seconds,... See merge request x2go/client/html/x2gohtmlclient!2 src/x2gokdrivehtmlclient.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gohtmlclient.git