chore: remove unused runningCount method from worker
The runningCount method was orphaned after removing metrics.go. All tests pass.
This commit is contained in:
parent
bd2b99b09c
commit
a4543750cd
1 changed files with 0 additions and 8 deletions
|
|
@ -123,14 +123,6 @@ func (w *Worker) GetID() string {
|
|||
return w.id
|
||||
}
|
||||
|
||||
// runningCount returns the number of currently running tasks
|
||||
func (w *Worker) runningCount() int {
|
||||
if w.runLoop == nil {
|
||||
return 0
|
||||
}
|
||||
return w.runLoop.RunningCount()
|
||||
}
|
||||
|
||||
// SelectDependencyManifest re-exports the executor function for API helpers.
|
||||
// It detects the dependency manifest file in the given directory.
|
||||
func SelectDependencyManifest(filesPath string) (string, error) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue