forked from LBRYCommunity/lbry-sdk
lower event stress test params since it fails too easily on CI
This commit is contained in:
parent
b792b134a2
commit
3af71a2674
1 changed files with 2 additions and 2 deletions
|
@ -92,8 +92,8 @@ class StreamControllerTestCase(AsyncioTestCase):
|
||||||
class TestEventQueuePublisher(AsyncioTestCase):
|
class TestEventQueuePublisher(AsyncioTestCase):
|
||||||
|
|
||||||
async def test_event_buffering_avoids_overloading_asyncio(self):
|
async def test_event_buffering_avoids_overloading_asyncio(self):
|
||||||
threads = 4
|
threads = 3
|
||||||
generate_events = 3000
|
generate_events = 2000
|
||||||
expected_event_count = (threads * generate_events)-1
|
expected_event_count = (threads * generate_events)-1
|
||||||
|
|
||||||
queue = mp.Queue()
|
queue = mp.Queue()
|
||||||
|
|
Loading…
Reference in a new issue