changeset 29:ce2d40e0fa04

Allow people to force a build.
author Mark Wielaard <mark@klomp.org>
date Mon, 08 Aug 2011 21:35:00 +0200
parents 857af5a797b9
children abc2e1778aef
files icedtea/master.cfg
diffstat 1 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/icedtea/master.cfg	Mon Aug 08 14:01:40 2011 +0200
+++ b/icedtea/master.cfg	Mon Aug 08 21:35:00 2011 +0200
@@ -848,10 +848,14 @@
 cc_re_tuple = (r'(PR [a-z]+/|PR ?|#)(\d+)',
                r'http://icedtea.classpath.org/bugzilla/show_bug.cgi?id=\2')
 
+# Allow people to force a build.
+from buildbot.status.web.authz import Authz
+authz = Authz(forceBuild=True)
+
 # Note http_port is local only, will be proxied by httpd running on builder.
 from buildbot.status import html
 c['status'].append(html.WebStatus(http_port=8010,
-                                  allowForce=False,
+                                  authz=authz,
                                   order_console_by_time=True,
                                   revlink=create_revlink,
                                   repositories=create_repolink,