mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
Reduce number of goroutines in test, to avoid hitting the hard limit of 8128
This commit is contained in:
parent
a69a31a3bf
commit
7bafbce816
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ var _ = Describe("GetInstance", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("only calls the constructor once when called concurrently", func() {
|
It("only calls the constructor once when called concurrently", func() {
|
||||||
const maxCalls = 20000
|
const maxCalls = 8000
|
||||||
var numCalls int32
|
var numCalls int32
|
||||||
start := sync.WaitGroup{}
|
start := sync.WaitGroup{}
|
||||||
start.Add(1)
|
start.Add(1)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue