@@ -193,7 +193,7 @@ mail_status_builders = []
193193# Regular builders
194194
195195for branch in BRANCHES :
196- if not branch .git_ref :
196+ if not branch .git_branch :
197197 continue
198198 buildernames = []
199199 refleakbuildernames = []
@@ -211,7 +211,7 @@ for branch in BRANCHES:
211211 continue
212212
213213 buildername = name + " " + branch .name
214- source = Git (repourl = GIT_URL , branch = branch .git_ref , ** GIT_KWDS )
214+ source = Git (repourl = GIT_URL , branch = branch .git_branch , ** GIT_KWDS )
215215 f = buildfactory (
216216 source ,
217217 branch = branch ,
@@ -262,7 +262,7 @@ for branch in BRANCHES:
262262 c ["schedulers" ].append (
263263 schedulers .SingleBranchScheduler (
264264 name = branch .name ,
265- change_filter = util .ChangeFilter (branch = branch .git_ref ),
265+ change_filter = util .ChangeFilter (branch = branch .git_branch ),
266266 treeStableTimer = 30 , # seconds
267267 builderNames = buildernames ,
268268 fileIsImportant = is_important_change ,
@@ -272,7 +272,7 @@ for branch in BRANCHES:
272272 c ["schedulers" ].append (
273273 schedulers .SingleBranchScheduler (
274274 name = branch .name + "-refleak" ,
275- change_filter = util .ChangeFilter (branch = branch .git_ref ),
275+ change_filter = util .ChangeFilter (branch = branch .git_branch ),
276276 # Wait this many seconds for no commits before starting a build
277277 # NB: During extremely busy times, this can cause the builders
278278 # to never actually fire. The current expectation is that it
0 commit comments