From 256371a6721dd9e123bb39757f3f9833b3ae7263 Mon Sep 17 00:00:00 2001 From: Brian Warner Date: Mon, 13 Aug 2007 20:18:57 +0100 Subject: [PATCH] waterfall: don't offer a 30 second reload, just 1/5/10 minutes --- buildbot/status/web/waterfall.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/status/web/waterfall.py b/buildbot/status/web/waterfall.py index 52d0e59..a5ed259 100644 --- a/buildbot/status/web/waterfall.py +++ b/buildbot/status/web/waterfall.py @@ -367,9 +367,9 @@ class WaterfallHelp(HtmlResource): # just after that text show_reload_input = '\n' times = [("none", "None"), - ("30", "30 seconds"), ("60", "60 seconds"), ("300", "5 minutes"), + ("600", "10 minutes"), ] current_reload_time = request.args.get("reload", ["none"]) if current_reload_time: -- 2.11.4.GIT