<div dir="ltr"><div><div><div>How do you configure a worker to run multiple builds at once?<br><br></div>The docs say this is possible (<a href="http://docs.buildbot.net/latest/manual/cfg-workers.html#limiting-concurrency">http://docs.buildbot.net/latest/manual/cfg-workers.html#limiting-concurrency</a>) with the `max_builds` option, but this doesn't seem to have any effect on my system.<br><br></div>My master.cfg has:<br><br>    c['workers'] = [<br>        worker.Worker("worker1", "pass", max_builds=2),<br>    ]<br><br></div>and yet, even though I have over 20 pending builds, the worker still only runs one build at a time. Am I misunderstanding worker concurrency, or have I misconfigured something?<br></div>