summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2009-08-09 21:03:06 -0700
committerJames Turnbull <james@lovedthanlost.net>2009-08-10 17:37:25 +1000
commit1a5c5b3fdbcf705d1fcd16f8f26e2b0f85b9e160 (patch)
tree0284cc48739fb9fcb8a93100e0d30a5c2fa088df /lib/puppet
parent0cb9072c0e3b37332f4eeaeff061950d6f73d021 (diff)
downloadpuppet-1a5c5b3fdbcf705d1fcd16f8f26e2b0f85b9e160.tar.gz
puppet-1a5c5b3fdbcf705d1fcd16f8f26e2b0f85b9e160.tar.xz
puppet-1a5c5b3fdbcf705d1fcd16f8f26e2b0f85b9e160.zip
Fixing #2508 - removing mention of ActiveRecord 2.3
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/defaults.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/defaults.rb b/lib/puppet/defaults.rb
index c45cf826f..010a98db5 100644
--- a/lib/puppet/defaults.rb
+++ b/lib/puppet/defaults.rb
@@ -729,7 +729,7 @@ module Puppet
require 'puppet/node/facts'
require 'puppet/resource/catalog'
if value
- raise "StoreConfigs not supported without ActiveRecord 2.3" unless Puppet.features.rails?
+ raise "StoreConfigs not supported without ActiveRecord 2.1 or higher" unless Puppet.features.rails?
Puppet::Resource::Catalog.cache_class = :active_record unless Puppet.settings[:async_storeconfigs]
Puppet::Node::Facts.cache_class = :active_record
Puppet::Node.cache_class = :active_record