lib/contrast/config/service_configuration.rb in contrast-agent-4.13.1 vs lib/contrast/config/service_configuration.rb in contrast-agent-4.14.0
- old
+ new
@@ -1,9 +1,8 @@
# Copyright (c) 2021 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true
-require 'contrast/config/default_value'
require 'contrast/config/logger_configuration'
module Contrast
module Config
# Common Configuration settings. Those in this section pertain to the
@@ -18,10 +17,10 @@
enable: EMPTY_VALUE,
host: EMPTY_VALUE,
port: EMPTY_VALUE,
socket: EMPTY_VALUE,
logger: Contrast::Config::LoggerConfiguration,
- bypass: Contrast::Config::DefaultValue.new(false)
+ bypass: false
}.cs__freeze
def initialize hsh
super(hsh, KEYS)
end