summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source/master.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/master.cfg b/source/master.cfg
index 8f2cf99..cb3600b 100644
--- a/source/master.cfg
+++ b/source/master.cfg
@@ -14,7 +14,7 @@ c = BuildmasterConfig = {}
# a BuildSlave object, specifying a unique slave name and password. The same
# slave name and password must be configured on the slave.
from buildbot.buildslave import BuildSlave
-c['slaves'] = [BuildSlave("example-slave", "pass")]
+c['slaves'] = [BuildSlave("local-slave", "pass")]
# 'protocols' contains information about protocols which master will use for
# communicating with slaves.
@@ -73,7 +73,7 @@ c['builders'] = []
for column in orch_config.columns:
c['builders'].append(
BuilderConfig(name=column.name,
- slavenames=["example-slave"],
+ slavenames=["local-slave"],
factory=column.factory))
####### STATUS TARGETS