summaryrefslogtreecommitdiff
path: root/buildscripts
diff options
context:
space:
mode:
authorMoustafa Maher Khalil <m.maher@mongodb.com>2022-06-27 21:12:17 +0000
committerMoustafa Maher Khalil <m.maher@mongodb.com>2022-06-29 21:30:32 +0000
commitdd216e3ed38099dbf0ff16899fa21bbb1744e482 (patch)
tree6fa577ab946da7b92f2aeb800fd57dfd244483ec /buildscripts
parent82bdc07662e22b265719c77ee748874e80498cb1 (diff)
downloadmongo-dd216e3ed38099dbf0ff16899fa21bbb1744e482.tar.gz
SERVER-67494 Increase the number of max ports per fixture for c2c suites
Diffstat (limited to 'buildscripts')
-rw-r--r--buildscripts/resmokelib/core/network.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/resmokelib/core/network.py b/buildscripts/resmokelib/core/network.py
index 34c54f70ab9..ce61dad8b31 100644
--- a/buildscripts/resmokelib/core/network.py
+++ b/buildscripts/resmokelib/core/network.py
@@ -49,7 +49,7 @@ class PortAllocator(object):
# The first _PORTS_PER_FIXTURE ports of each range are reserved for the fixtures, the remainder
# of the port range is used by tests.
- _PORTS_PER_FIXTURE = 20
+ _PORTS_PER_FIXTURE = 40
_NUM_USED_PORTS_LOCK = threading.Lock()