Skip to content

Commit

Permalink
Merge pull request #112 from matoro/master
Browse files Browse the repository at this point in the history
increase attempts for test_process_pool_stop_stopped_callback
  • Loading branch information
noxdafox committed Mar 1, 2023
2 parents af787bd + cd78923 commit 4b7a415
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/test_process_pool_spawn.py
Expand Up @@ -315,7 +315,7 @@ def stop_pool_callback(_):
future = pool.schedule(function, args=[1])
future.add_done_callback(stop_pool_callback)
with self.assertRaises(RuntimeError):
for index in range(10):
for index in range(30):
time.sleep(0.1)
pool.schedule(long_function, args=[index])

Expand Down

0 comments on commit 4b7a415

Please sign in to comment.