chore: remove unused runningCount method from worker

The runningCount method was orphaned after removing metrics.go.
All tests pass.
This commit is contained in:
Jeremie Fraeys 2026-02-17 20:43:16 -05:00
parent bd2b99b09c
commit a4543750cd
No known key found for this signature in database

View file

@ -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) {