yocto-autobuilder2/workers.py
Joshua Lock 20dcfb7159 Fix module name after rename
The repository was renamed yoctoabb from yoctoab, fix up module references
2018-02-22 14:05:19 +00:00

10 lines
312 B
Python

from buildbot.plugins import worker
from yoctoabb import config
workers = []
for w in config.workers:
workers.append(worker.Worker(w, config.worker_password,
max_builds=config.worker_max_builds,
notify_on_missing=config.notify_on_missing))