Caution
Buildbot no longer supports Python 2.7 on the Buildbot master.
3.9.15. WorkerManager¶
3.9.15.1. WorkerRegistration¶
-
class
buildbot.worker.manager.
WorkerRegistration
(master, worker)¶ Represents single Worker registration
-
unregister
()¶ Remove registration for worker
-
update
(worker_config, global_config)¶ Parameters: - worker_config (
Worker
) – new Worker instance - global_config (
MasterConfig
) – Buildbot config
Update the registration in case the port or password has changed.
NOTE: You should invoke this method after calling WorkerManager.register(worker)
- worker_config (
-
3.9.15.2. WorkerManager¶
-
class
buildbot.worker.manager.
WorkerManager
(master)¶ Handle Worker registrations for multiple protocols
-
register
(worker)¶ Parameters: worker ( Worker
) – new Worker instanceReturns: WorkerRegistration
Creates
WorkerRegistration
instance.NOTE: You should invoke .update() on returned WorkerRegistration instance
-