Skip to content

Commit 941a529

Browse files
authored
chore: fix cve with setuptools (#240)
Signed-off-by: kohlisid <sidhant.kohli@gmail.com>
1 parent 3e01da2 commit 941a529

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/map/test_multiproc_mapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def test_max_process_count(self) -> None:
3636
"""Max process count is capped at 2 * os.cpu_count, irrespective of what the user
3737
provides as input"""
3838
default_val = os.cpu_count()
39-
server = MapMultiprocServer(mapper_instance=map_handler, server_count=20)
39+
server = MapMultiprocServer(mapper_instance=map_handler, server_count=100)
4040
self.assertEqual(server._process_count, default_val * 2)
4141

4242
def test_udf_map_err_handshake(self):

0 commit comments

Comments
 (0)