| Index: masters/master.chromium.infra/master.cfg
|
| diff --git a/masters/master.chromium.infra/master.cfg b/masters/master.chromium.infra/master.cfg
|
| index 134a098df51572be83a1aea13a2e27819311dd45..f64d497714b6dd5c4ed825f445d47a66dbe73d2a 100644
|
| --- a/masters/master.chromium.infra/master.cfg
|
| +++ b/masters/master.chromium.infra/master.cfg
|
| @@ -15,6 +15,7 @@ from buildbot.status import mail
|
| from master import gitiles_poller
|
| from master import master_utils
|
| from master import slaves_list
|
| +from master.factory import annotator_factory
|
| from master.factory import remote_run_factory
|
|
|
|
|
| @@ -27,6 +28,8 @@ c['builders'] = []
|
| c['change_source'] = []
|
| c['status'] = []
|
|
|
| +f_annotations = annotator_factory.AnnotatorFactory(ActiveMaster)
|
| +
|
| def m_remote_run(recipe, **kwargs):
|
| return remote_run_factory.RemoteRunFactory(
|
| active_master=ActiveMaster,
|
| @@ -167,7 +170,8 @@ c['builders'].extend([
|
| {
|
| 'name': 'infra-continuous-win-64',
|
| 'slavebuilddir': 'infra-continuous',
|
| - 'factory': m_remote_run('infra/infra_continuous'),
|
| + # TODO(phajdan.jr): Convert to remote_run (http://crbug.com/617565).
|
| + 'factory': f_annotations.BaseFactory('infra/infra_continuous'),
|
| 'category': '1continuous',
|
| },
|
| {
|
|
|