]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
SQL driver config can't refer to ...pool
authorNick Porter <nick@portercomputing.co.uk>
Wed, 31 Jan 2024 17:54:44 +0000 (17:54 +0000)
committerNick Porter <nick@portercomputing.co.uk>
Thu, 1 Feb 2024 14:36:53 +0000 (14:36 +0000)
since it is included before the pool section.

raddb/mods-config/sql/driver/oracle

index a4dee9365d1ed5418b66672e16c253f9369785cd..36652842c3ef3e8fbfbcda1c5ebd258d8ad055bd 100644 (file)
@@ -8,10 +8,20 @@
 #
 oracle {
        spool {
-               min = ${...pool.min}
-               max = ${...pool.max}
-               inc = ${...pool.spare}
+               #  Minimum number of sessions in the session pool.
+               min = 1
+
+               #  Maximum number of sessions in the session pool.
+               #  Defaults to the number of threads if not set.
+#              max = 2
+
+               #  Increment for sessions to be started
+               inc = 1
+
+               #  Session ide time (0 means no timeout)
                timeout = 0
+
+               #  Statement cache size for each session.
                statement_cache_size = 64
        }
 }