···10191019 </listitem>
10201020 <listitem>
10211021 <para>
10221022+ The syntax of the PostgreSQL configuration file is now checked at build
10231023+ time. If your configuration includes a file inaccessible inside the build
10241024+ sandbox, set <varname>services.postgresql.checkConfig</varname> to
10251025+ <literal>false</literal>.
10261026+ </para>
10271027+ </listitem>
10281028+ <listitem>
10291029+ <para>
10221030 The rkt module has been removed, it was archived by upstream.
10231031 </para>
10241032 </listitem>
···11+diff --git a/privacyidea/lib/resolvers/LDAPIdResolver.py b/privacyidea/lib/resolvers/LDAPIdResolver.py
22+index ae9d87764..cfc609931 100644
33+--- a/privacyidea/lib/resolvers/LDAPIdResolver.py
44++++ b/privacyidea/lib/resolvers/LDAPIdResolver.py
55+@@ -97,11 +97,6 @@
66+ SERVERPOOL_ROUNDS = 2
77+ # The number of seconds a non-responding server is removed from the server pool
88+ SERVERPOOL_SKIP = 30
99+-# The number of seconds that ldap3 waits if no server is left in the pool, before
1010+-# starting the next round
1111+-pooling_loop_timeout = get_app_config_value("PI_LDAP_POOLING_LOOP_TIMEOUT", 10)
1212+-log.info("Setting system wide POOLING_LOOP_TIMEOUT to {0!s}.".format(pooling_loop_timeout))
1313+-ldap3.set_config_parameter("POOLING_LOOP_TIMEOUT", pooling_loop_timeout)
1414+1515+ # 1 sec == 10^9 nano secs == 10^7 * (100 nano secs)
1616+ MS_AD_MULTIPLYER = 10 ** 7
1717+@@ -314,6 +309,11 @@ def __init__(self):
1818+ self.serverpool_rounds = SERVERPOOL_ROUNDS
1919+ self.serverpool_skip = SERVERPOOL_SKIP
2020+ self.serverpool = None
2121++ # The number of seconds that ldap3 waits if no server is left in the pool, before
2222++ # starting the next round
2323++ pooling_loop_timeout = get_app_config_value("PI_LDAP_POOLING_LOOP_TIMEOUT", 10)
2424++ log.info("Setting system wide POOLING_LOOP_TIMEOUT to {0!s}.".format(pooling_loop_timeout))
2525++ ldap3.set_config_parameter("POOLING_LOOP_TIMEOUT", pooling_loop_timeout)
2626+2727+ def checkPass(self, uid, password):
2828+ """
···11{ lib, stdenv, fetchurl, perl, libunwind, buildPackages }:
2233+# libunwind does not have the supportsHost attribute on darwin, thus
44+# when this package is evaluated it causes an evaluation error
55+assert stdenv.isLinux;
66+37stdenv.mkDerivation rec {
48 pname = "strace";
59 version = "5.11";