Skip to content
This repository was archived by the owner on May 31, 2025. It is now read-only.

Commit 04c18d2

Browse files
Set max_builds=1 for the workers.
Right now, they're pretty low-end, and we've seen some OOMing, causing spurious test failures.
1 parent 7805771 commit 04c18d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bb_master_config/master.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,22 +43,22 @@ c = BuildmasterConfig = {}
4343
# a Worker object, specifying a unique worker name and password. The same
4444
# worker name and password must be configured on the worker.
4545

46-
# Our workers right now are pretty low-end, so we set max_builds=3 to avoid
46+
# Our workers right now are pretty low-end, so we set max_builds=1 to avoid
4747
# ooming.
4848

4949
c['workers'] = []
5050
c['workers'].append(
5151
worker.Worker(
5252
FREEBSD_BB_SECRETS['bb_un'],
5353
FREEBSD_BB_SECRETS['bb_pw'],
54-
max_builds=2,
54+
max_builds=1,
5555
)
5656
)
5757
c['workers'].append(
5858
worker.Worker(
5959
UBUNTU_BB_SECRETS['bb_un'],
6060
UBUNTU_BB_SECRETS['bb_pw'],
61-
max_builds=2,
61+
max_builds=1,
6262
)
6363
)
6464

0 commit comments

Comments
 (0)