| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 """ActiveMaster definition.""" | 5 """ActiveMaster definition.""" |
| 6 | 6 |
| 7 class Syzygy(object): | 7 from config import Master |
| 8 |
| 9 class Syzygy(Master.Master3): |
| 8 project_name = 'Syzygy' | 10 project_name = 'Syzygy' |
| 11 project_url = 'http://sawbuck.googlecode.com' |
| 9 master_port = 8042 | 12 master_port = 8042 |
| 10 slave_port = 8142 | 13 slave_port = 8142 |
| 11 master_port_alt = 8242 | 14 master_port_alt = 8242 |
| 12 tree_closing_notification_recipients = [] | |
| 13 from_address = 'buildbot@chromium.org' | |
| 14 master_host = 'master3.golo.chromium.org' | |
| 15 buildslave_version = 'buildbot_slave_8_4' | |
| 16 twisted_version = 'twisted_10_2' | |
| OLD | NEW |