lib/contrast/config/inventory_configuration.rb in contrast-agent-4.13.1 vs lib/contrast/config/inventory_configuration.rb in contrast-agent-4.14.0
- old
+ new
@@ -4,14 +4,10 @@
module Contrast
module Config
# Common Configuration settings. Those in this section pertain to the
# inventory functionality of the Agent.
class InventoryConfiguration < BaseConfiguration
- KEYS = {
- enable: Contrast::Config::DefaultValue.new(true),
- analyze_libraries: Contrast::Config::DefaultValue.new(true),
- tags: EMPTY_VALUE
- }.cs__freeze
+ KEYS = { enable: true, analyze_libraries: true, tags: EMPTY_VALUE }.cs__freeze
def initialize hsh
super(hsh, KEYS)
end
end