Remove max_requests config stanza from C language implementations in example config
authordbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 22 Feb 2011 18:17:24 +0000 (18:17 +0000)
committerdbs <dbs@9efc2488-bf62-4759-914b-345cdb29e865>
Tue, 22 Feb 2011 18:17:24 +0000 (18:17 +0000)
Only Perl implementations support the max_requests stanza, so let's not confuse
matters with an unused element.

git-svn-id: svn://svn.open-ils.org/OpenSRF/branches/rel_2_0@2180 9efc2488-bf62-4759-914b-345cdb29e865

examples/opensrf.xml.example

index 2747d70..0dc2704 100644 (file)
@@ -87,7 +87,7 @@ vim:et:ts=2:sw=2:
         <!-- Module the implements this application -->
         <implementation>OpenSRF::Application::Persist</implementation>
 
-        <!-- max stateful requests before a session automatically disconnects a client -->
+        <!-- max stateful REQUEST requests before a session automatically disconnects a client -->
         <max_requests>97</max_requests>
 
         <!-- this will disable the stderr output log for this service -->
@@ -136,7 +136,6 @@ vim:et:ts=2:sw=2:
         <stateless>1</stateless>
         <language>c</language>
         <implementation>osrf_math.so</implementation>
-        <max_requests>97</max_requests>
         <unix_config>
           <unix_sock>opensrf.math_unix.sock</unix_sock>
           <unix_pid>opensrf.math_unix.pid</unix_pid>
@@ -154,7 +153,6 @@ vim:et:ts=2:sw=2:
         <stateless>1</stateless>
         <language>c</language>
         <implementation>osrf_dbmath.so</implementation>
-        <max_requests>99</max_requests>
         <unix_config>
           <max_requests>1000</max_requests>
           <unix_log>opensrf.dbmath_unix.log</unix_log>