summaryrefslogtreecommitdiff
path: root/source/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'source/master.cfg')
-rw-r--r--source/master.cfg3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/master.cfg b/source/master.cfg
index a90705a..4e81e29 100644
--- a/source/master.cfg
+++ b/source/master.cfg
@@ -21,7 +21,7 @@ c = BuildmasterConfig = {}
from buildbot.buildslave import BuildSlave
c['slaves'] = []
-# TODO this needs replacing to be elastic
+# TODO this needs replacing to be elastic, the slaves need to be added dynamically
for slave in orch_config.slaves:
c['slaves'].append(BuildSlave(slave['name'], slave['password']))
@@ -49,7 +49,6 @@ c['change_source'].append(PBChangeSource(
from buildbot.changes.filter import ChangeFilter
categories = {}
-#TODO get categories from orch_config rather than hard coded list
for _c in configure.get_categories()+orch_config.categories:
categories[_c] = ChangeFilter(category=_c)