Make request_pool_spec tests more robust (#28610)

This commit is contained in:
Claire 2024-01-08 13:29:05 +01:00 committed by GitHub
parent 1bc5a52139
commit 157fc69954
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 7 deletions

View File

@ -33,14 +33,12 @@ describe RequestPool do
subject subject
threads = Array.new(3) do threads = Array.new(5) do
Thread.new do Thread.new do
2.times do subject.with('http://example.com') do |http_client|
subject.with('http://example.com') do |http_client| http_client.get('/').flush
http_client.get('/').flush # Nudge scheduler to yield and exercise the full pool
# Nudge scheduler to yield and exercise the full pool sleep(0.01)
sleep(0)
end
end end
end end
end end