summaryrefslogtreecommitdiff
path: root/internal/executor/executor.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/executor/executor.go')
-rw-r--r--internal/executor/executor.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/internal/executor/executor.go b/internal/executor/executor.go
index ac528c6..8257f31 100644
--- a/internal/executor/executor.go
+++ b/internal/executor/executor.go
@@ -84,7 +84,6 @@ type Pool struct {
doneCh chan struct{} // signals when a worker slot is freed
workerWg sync.WaitGroup // tracks in-flight execute/executeResume goroutines
dispatchDone chan struct{} // closed when the dispatch goroutine exits
- Questions *QuestionRegistry
Classifier *Classifier
}
@@ -116,7 +115,6 @@ func NewPool(maxConcurrent int, runners map[string]Runner, store Store, logger *
workCh: make(chan workItem, maxConcurrent*10+100),
doneCh: make(chan struct{}, maxConcurrent),
dispatchDone: make(chan struct{}),
- Questions: NewQuestionRegistry(),
}
go p.dispatch()
return p