Skip to content

Commit

Permalink
fixup! Use different workers for nonlatent master
Browse files Browse the repository at this point in the history
  • Loading branch information
fauust committed Mar 7, 2024
1 parent cc98df2 commit b7b437d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions master-nonlatent/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ c["builders"] = []
c["builders"].append(
util.BuilderConfig(
name="amd64-rhel8-wordpress",
workernames=["bb-rhel8-docker"],
workernames=[os.getenv("MASTER_NONLATENT_DOCKERLIBRARY_WORKER", default="bb-rhel8-docker")],
tags=["RHEL"],
collapseRequests=True,
nextBuild=nextBuild,
Expand All @@ -986,7 +986,7 @@ c["builders"].append(
c["builders"].append(
util.BuilderConfig(
name="amd64-rhel8-dockerlibrary",
workernames=["bb-rhel8-docker"],
workernames=[os.getenv("MASTER_NONLATENT_DOCKERLIBRARY_WORKER", default="bb-rhel8-docker")],
tags=["RHEL"],
collapseRequests=True,
nextBuild=nextBuild,
Expand Down

0 comments on commit b7b437d

Please sign in to comment.