bug 458911: buildbot/process/base.py breaks ReleaseTaggingBuilder. r=ccooper, patch=me
git-svn-id: svn://10.0.0.236/trunk@254584 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -394,7 +394,12 @@ class Build:
|
||||
step.setDefaultWorkdir(self.workdir)
|
||||
name = step.name
|
||||
count = 1
|
||||
while name in stepnames and count < 100:
|
||||
# LOCAL MOZILLA PATCH:
|
||||
# buildbotcustom.process.factory.ReleaseTaggingFactory uses
|
||||
# more than 100 ShellCommands when it runs - this has been bumped up
|
||||
# to support that. upstream buildbot bug here:
|
||||
# http://buildbot.net/trac/ticket/366
|
||||
while name in stepnames and count < 1000:
|
||||
count += 1
|
||||
name = step.name + "_%d" % count
|
||||
if name in stepnames:
|
||||
|
||||
Reference in New Issue
Block a user