Issue #21901: Cap the maximum number of file descriptors to use for the test.
This commit is contained in:
parent
31e7bfa6ba
commit
889d6463b3
|
@ -378,7 +378,7 @@ class ScalableSelectorMixIn:
|
||||||
resource.setrlimit(resource.RLIMIT_NOFILE, (hard, hard))
|
resource.setrlimit(resource.RLIMIT_NOFILE, (hard, hard))
|
||||||
self.addCleanup(resource.setrlimit, resource.RLIMIT_NOFILE,
|
self.addCleanup(resource.setrlimit, resource.RLIMIT_NOFILE,
|
||||||
(soft, hard))
|
(soft, hard))
|
||||||
NUM_FDS = hard
|
NUM_FDS = min(hard, 2**16)
|
||||||
except (OSError, ValueError):
|
except (OSError, ValueError):
|
||||||
NUM_FDS = soft
|
NUM_FDS = soft
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue