[Lsb-messages] /var/www/bzr/lsb/devel/buildbot-config r239: Disable polling temporarily in preparation for ChangeSource migration.

Jeff Licquia licquia at linuxfoundation.org
Mon Apr 30 18:40:18 UTC 2012


------------------------------------------------------------
revno: 239
committer: Jeff Licquia <licquia at linuxfoundation.org>
branch nick: buildbot-config
timestamp: Mon 2012-04-30 14:40:18 -0400
message:
  Disable polling temporarily in preparation for ChangeSource migration.
modified:
  lsb_master.cfg
-------------- next part --------------
=== modified file 'lsb_master.cfg'
--- a/lsb_master.cfg	2012-04-27 18:26:53 +0000
+++ b/lsb_master.cfg	2012-04-30 18:40:18 +0000
@@ -260,6 +260,9 @@
 # about source code changes. Any class which implements IChangeSource can be
 # put here: there are several in buildbot/changes/*.py to choose from.
 
+# XXX: Polling effectively disabled (interval set to one week) due to
+#      load/throttling issues on server; need to switch to PbChangeSource.
+
 c['change_source'] = []
 lsb_change_sources = lsb_pkg_subdir_projects.keys() + \
     [x[1] for x in lsb_packaging_projects if x[1] is not None] + ["appbat"]
@@ -269,12 +272,13 @@
         continue
     c['change_source'].append(
         BzrPoller(url="%slsb/devel/%s" % (bzr_toplevel, project),
-                  branch_name="lsb/devel/" + project))
+                  branch_name="lsb/devel/" + project, poll_interval=604800))
     for branch in branch_watch_list:
         if project in branch_watch_list[branch]:
             c['change_source'].append(
                 BzrPoller(url="%slsb/%s/%s" % (bzr_toplevel, branch, project),
-                          branch_name="lsb/%s/%s" % (branch, project)))
+                          branch_name="lsb/%s/%s" % (branch, project),
+                          poll_interval=604800))
     added.append(project)
 
 # For example, if you had CVSToys installed on your repository, and your



More information about the lsb-messages mailing list