Bug 1412602 - Period file update scheduled twice every day, pushes twice to mozilla-central except when it races itself. r=catlee
I mistakenly wrote the initial patch for the sheduler name not the buildername. This should fix it
MozReview-Commit-ID: 7yRf3vW0a8S
--- a/mozilla/scheduler_master.cfg
+++ b/mozilla/scheduler_master.cfg
@@ -76,17 +76,17 @@ for branch in ACTIVE_BRANCHES:
getattr(passwords, 'secrets', None))
for s in branchObjects.get('schedulers', [])[:]:
# builder names to be deleted
if not s.builderNames:
continue
bnames = []
if branch in disable_periodic_file_sched:
- bnames.extend(['daily-' + branch])
+ bnames.extend(['Linux x86-64 ' + branch + ' periodic file update'])
if branch in disable_osx_sched:
bnames.extend(['OS X 10.7 ' + branch + " build", 'OS X 10.7 ' + branch + " devedition build"])
if branch in disable_win_sched:
bnames.extend([
'WINNT 5.2 ' + branch + " build",
'WINNT 5.2 ' + branch + " leak test build",
'WINNT 5.2 ' + branch + " pgo-build",
'WINNT 5.2 ' + branch + " devedition build",
--- a/mozilla/universal_master_sqlite.cfg
+++ b/mozilla/universal_master_sqlite.cfg
@@ -94,17 +94,17 @@ for branch in ACTIVE_BRANCHES:
getattr(passwords, 'secrets', None))
for s in branchObjects.get('schedulers', [])[:]:
if not s.builderNames:
continue
# builder names to be deleted
bnames = []
if branch in disable_periodic_file_sched:
- bnames.extend(['daily-' + branch])
+ bnames.extend(['Linux x86-64 ' + branch + ' periodic file update'])
if branch in disable_osx_sched:
bnames.extend(['OS X 10.7 ' + branch + " build", 'OS X 10.7 ' + branch + " devedition build"])
if branch in disable_win_sched:
bnames.extend([
'WINNT 5.2 ' + branch + " build",
'WINNT 5.2 ' + branch + " leak test build",
'WINNT 5.2 ' + branch + " pgo-build",
'WINNT 5.2 ' + branch + " devedition build",