3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #97724 from mweinelt/supervisor

pythonPackages.supervisor: drop glibc-2.31 patch
This commit is contained in:
Maximilian Bosch 2020-09-11 11:16:48 +02:00 committed by GitHub
commit 914148a665
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 20 deletions

View file

@ -14,13 +14,6 @@ buildPythonPackage rec {
sha256 = "c479c875853e9c013d1fa73e529fd2165ff1ecaecc7e82810ba57e7362ae984d";
};
patches = [
# SOMAXCONN limit of glibc-2.31 has been increased from 128 to 4096:
# * https://sourceware.org/git/?p=glibc.git;a=commit;h=96958e2700f5b4f4d1183a0606b2b9848a53ea44
# * https://github.com/Supervisor/supervisor/issues/1346
./glibc-2.31.patch
];
# wants to write to /tmp/foo which is likely already owned by another
# nixbld user on hydra
doCheck = !stdenv.isDarwin;

View file

@ -1,13 +0,0 @@
diff --git a/supervisor/tests/base.py b/supervisor/tests/base.py
index 643e609..8aa45e7 100644
--- a/supervisor/tests/base.py
+++ b/supervisor/tests/base.py
@@ -358,7 +358,7 @@ class DummySocketConfig:
return not self.__eq__(other)
def get_backlog(self):
- return 128
+ return 4096
def create_and_bind(self):
return DummySocket(self.fd)