BUILDBOT: Add keepalive pings

This will avoid closing by the reverse proxy
This commit is contained in:
Le Philousophe
2025-02-23 11:03:00 +00:00
parent 5af75b70e4
commit 1657091c5f
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -85,6 +85,9 @@ buildbot_url = "https://buildbot.scummvm.org/"
# Retention time for data (in weeks)
data_retention_weeks = 4
# Ping interval to keep websocket alive
ws_ping_interval = 0
change_horizon = 1000
# URL used to download daily builds
+3
View File
@@ -87,6 +87,9 @@ try:
except TypeError:
www['port'] = "tcp:{0}".format(config.www_port)
if hasattr(config, 'ws_ping_interval'):
www['ws_ping_interval'] = config.ws_ping_interval
if hasattr(config, 'irc') and config.irc:
services.append(reporters.IRC(
host=config.irc['server'],