Merge branch 'master' into shadow

This commit is contained in:
Mike McLean 2008-07-25 16:41:22 -04:00
commit 9af88e0f4b
5 changed files with 74 additions and 14 deletions

View file

@ -289,7 +289,7 @@ class RepoManager(object):
tags = {}
for target in session.getBuildTargets():
tag_id = target['build_tag']
tags[tag_id] = 1
tags[tag_id] = target['build_tag_name']
#index repos by tag
tag_repos = {}
for repo in self.repos.values():
@ -331,8 +331,8 @@ class RepoManager(object):
if len(self.tasks) >= options.max_repo_tasks:
self.logger.info("Maximum number of repo tasks reached.")
break
task_id = session.newRepo(tag_id)
self.logger.info("Created newRepo task %s for tag %s" % (task_id, tag_id))
task_id = session.newRepo(tags[tag_id])
self.logger.info("Created newRepo task %s for tag %s (%s)" % (task_id, tag_id, tags[tag_id]))
self.tasks[tag_id] = task_id
#some cleanup
n_deletes = 0