Add sleep statement to nudge thread scheduler in request pool spec (#28596)

This commit is contained in:
Matt Jankowski 2024-01-04 11:55:00 -05:00 committed by GitHub
parent ae39bed95b
commit 964a0ecf37
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

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