Skip to content

Commit a9aca8d

Browse files
committed
Fix local testing mode by skipping downstream-only config setting
Ideally we'd better replicate the the upstream config, but this hopefully moves things forward.
1 parent 990bdae commit a9aca8d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

buildbot/osuosl/master/master.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ c['workers'] = config.workers.get_all()
3939

4040
c['protocols'] = {'pb': {'port': "tcp:9990:interface=127.0.0.1" if test_mode else 9990}}
4141

42-
c['ignoreOfflineWorkersTimeout'] = 30 # minutes.
42+
if not test_mode: # Config key only supported on downstream buildbot fork.
43+
c['ignoreOfflineWorkersTimeout'] = 30 # minutes.
4344

4445
####### CHANGESOURCES
4546

0 commit comments

Comments
 (0)