Skip to content
Snippets Groups Projects
Commit 029e5313 authored by Josh Brooks's avatar Josh Brooks
Browse files

Potential fix

parent 9169356e
No related branches found
No related tags found
3 merge requests!510Release,!381Initial CTIDH,!378Add a debug GetRunningProcesses to bindings
......@@ -62,10 +62,8 @@ func (m *manager) startSendingWorkerPool(multiStop *stoppable.Multi) {
for i := 0; i < workerPoolThreads; i++ {
stop := stoppable.NewSingle(sendThreadStoppableName + strconv.Itoa(i))
go m.sendingThread(stop)
multiStop.Add(stop)
go func(single *stoppable.Single) {
m.sendingThread(stop)
}(stop)
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment