From 5f7d0fbb3699cba28d10adac62c69aedfce2df38 Mon Sep 17 00:00:00 2001 From: Markus Roberts Date: Tue, 2 Nov 2010 11:10:33 -0700 Subject: Fix for #2568 -- Add a dbconnections option to set AR pool size The dbconnection option, if set to a positive integer, will be passed to active record as the connection pool size (pool). --- lib/puppet/defaults.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/puppet/defaults.rb') diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb index 72b1af188..b8437fe29 100644 --- a/lib/puppet/defaults.rb +++ b/lib/puppet/defaults.rb @@ -663,6 +663,8 @@ module Puppet used when networked databases are used."], :dbpassword => [ "puppet", "The database password for caching. Only used when networked databases are used."], + :dbconnections => [ '', "The number of database connections for networked + databases. Will be ignored unless the value is a positive integer."], :dbsocket => [ "", "The database socket location. Only used when networked databases are used. Will be ignored if the value is an empty string."], :railslog => {:default => "$logdir/rails.log", -- cgit