Add active worker count to buildmanager logs.
This commit is contained in:
parent
37079315d2
commit
33f12c58ba
3 changed files with 10 additions and 2 deletions
|
@ -47,3 +47,9 @@ class BaseManager(object):
|
|||
one of: incomplete, error, complete. If incomplete, the job should be requeued.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
||||
def num_workers(self):
|
||||
""" Returns the number of active build workers currently registered. This includes those
|
||||
that are currently busy and awaiting more work.
|
||||
"""
|
||||
raise NotImplementedError
|
||||
|
|
Reference in a new issue