diff options
author | Nick Lewis <nick@puppetlabs.com> | 2011-03-09 12:55:52 -0800 |
---|---|---|
committer | Nick Lewis <nick@puppetlabs.com> | 2011-03-09 12:55:52 -0800 |
commit | 531e25836e1313cd508ab8394e16cf438a62ac7b (patch) | |
tree | ab39e3be5aee2005d599bd550e10fe0b2dcc3145 /lib/puppet/rails | |
parent | 3489412a03fec009bc42222f449077e6f14998a4 (diff) | |
download | puppet-531e25836e1313cd508ab8394e16cf438a62ac7b.tar.gz puppet-531e25836e1313cd508ab8394e16cf438a62ac7b.tar.xz puppet-531e25836e1313cd508ab8394e16cf438a62ac7b.zip |
maint: Remove serialization of InventoryFact values
This is not necessary because fact values are always strings, and it wasn't
doing the unnecessary job it was expected to do anyway.
Diffstat (limited to 'lib/puppet/rails')
-rw-r--r-- | lib/puppet/rails/inventory_fact.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/rails/inventory_fact.rb b/lib/puppet/rails/inventory_fact.rb index 033943358..aa6334eef 100644 --- a/lib/puppet/rails/inventory_fact.rb +++ b/lib/puppet/rails/inventory_fact.rb @@ -2,5 +2,4 @@ require 'puppet/rails/inventory_node' class Puppet::Rails::InventoryFact < ::ActiveRecord::Base belongs_to :node, :class_name => "Puppet::Rails::InventoryNode" - serialize :value end |