nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

pythonPackages.supervisor: drop glibc-2.31 patch

A fix was integrated into the 4.2.1 release.

(cherry picked from commit 4607f02589cb891092a952f1a1aefb47d30ad6eb)

authored by

Martin Weinelt and committed by
Maximilian Bosch
8ab64ff6 947219c3

-20
-7
pkgs/development/python-modules/supervisor/default.nix
··· 14 14 sha256 = "c479c875853e9c013d1fa73e529fd2165ff1ecaecc7e82810ba57e7362ae984d"; 15 15 }; 16 16 17 - patches = [ 18 - # SOMAXCONN limit of glibc-2.31 has been increased from 128 to 4096: 19 - # * https://sourceware.org/git/?p=glibc.git;a=commit;h=96958e2700f5b4f4d1183a0606b2b9848a53ea44 20 - # * https://github.com/Supervisor/supervisor/issues/1346 21 - ./glibc-2.31.patch 22 - ]; 23 - 24 17 # wants to write to /tmp/foo which is likely already owned by another 25 18 # nixbld user on hydra 26 19 doCheck = !stdenv.isDarwin;
-13
pkgs/development/python-modules/supervisor/glibc-2.31.patch
··· 1 - diff --git a/supervisor/tests/base.py b/supervisor/tests/base.py 2 - index 643e609..8aa45e7 100644 3 - --- a/supervisor/tests/base.py 4 - +++ b/supervisor/tests/base.py 5 - @@ -358,7 +358,7 @@ class DummySocketConfig: 6 - return not self.__eq__(other) 7 - 8 - def get_backlog(self): 9 - - return 128 10 - + return 4096 11 - 12 - def create_and_bind(self): 13 - return DummySocket(self.fd)