You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Max GoRoutines needs to be fixed, in it's current implementation it can be max * max. Lets use 10 goroutines for example.
Ccore.go/ExecSearch can use 10 go routines, ExecSearch can then spawn 10GetResults goroutines. This leads to a total of 10 * 10 go routines instead of a max of 10
The text was updated successfully, but these errors were encountered:
hiddengearz
changed the title
Limit amount of goroutines globally
Bug: Limit amount of goroutines globally
Dec 8, 2021
Max GoRoutines needs to be fixed, in it's current implementation it can be max * max. Lets use 10 goroutines for example.
Ccore.go/ExecSearch can use 10 go routines, ExecSearch can then spawn 10GetResults goroutines. This leads to a total of 10 * 10 go routines instead of a max of 10
The text was updated successfully, but these errors were encountered: