Skip to content

Commit

Permalink
increase number of threads used in concurrency test
Browse files Browse the repository at this point in the history
  • Loading branch information
capjamesg committed Oct 18, 2024
1 parent 92c0dcd commit cb0e073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/concurrency.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def query(i):

threads = []

for i in range(25):
for i in range(2500):
t = threading.Thread(target=query, args=(i,))
threads.append(t)
t.start()
Expand Down

0 comments on commit cb0e073

Please sign in to comment.