3.4.16. WorkerManager¶
3.4.16.1. WorkerRegistration¶
- 
class buildbot.worker.manager.WorkerRegistration(master, worker)¶
- Represents single Worker registration - 
unregister()¶
- Remove registartion 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.4.16.2. WorkerManager¶
- 
class buildbot.worker.manager.WorkerManager(master)¶
- Handle Worker registrations for mulitple protocols - 
register(worker)¶
- Parameters: - worker ( - Worker) -- new Worker instance- Returns: - WorkerRegistration- Creates - WorkerRegistrationinstance.- NOTE: You should invoke .update() on returned WorkerRegistration instance 
 
- 
