changeset 232:ec60fe53c36c

use our own gitpoller; the one included in buildbot does not work with e.g. git 1.6.3
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 21 Dec 2011 16:29:36 -0800
parents d4637641be6e
children 82631d1ba49e
files autobot/template/master/master.cfg
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/autobot/template/master/master.cfg	Wed Dec 07 14:18:23 2011 -0800
+++ b/autobot/template/master/master.cfg	Wed Dec 21 16:29:36 2011 -0800
@@ -20,7 +20,7 @@
            'hg':  set()}
 
 builder_sources = {}
-           
+
 # define builder factories
 from autobot.projects import factories as factory_dict
 from autobot.projects import args
@@ -37,7 +37,7 @@
 
         # make a factory
         f = factory_dict[factory](**factory_args)
-        
+
         # define builder
         buildername = '%s - %s' % (factory, slave)
         b = {'name': buildername,
@@ -56,14 +56,14 @@
             for source, branch in _sources:
                 sources[source_type].add((source, branch))
                 builder_sources.setdefault((source, branch), []).append(buildername)
-    
+
 c['builders'] = builders
 
 ####### CHANGESOURCES
 from buildbot.changes.pb import PBChangeSource
 c['change_source'] = [PBChangeSource()]
 
-from buildbot.changes.gitpoller import GitPoller
+from autobot.changes.gitpoller import GitPoller
 from autobot.changes.poller import HgPoller
 
 pollInterval = int(config.master.get('pollInterval', 60))