?
Current Path : /usr/share/ruby/vendor_ruby/puppet/pops/binder/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : //usr/share/ruby/vendor_ruby/puppet/pops/binder/bindings_validator_factory.rb |
# Configures validation suitable for the bindings model # @api public # class Puppet::Pops::Binder::BindingsValidatorFactory < Puppet::Pops::Validation::Factory Issues = Puppet::Pops::Binder::BinderIssues # Produces the checker to use def checker diagnostic_producer Puppet::Pops::Binder::BindingsChecker.new(diagnostic_producer) end # Produces the label provider to use def label_provider Puppet::Pops::Binder::BindingsLabelProvider.new() end # Produces the severity producer to use def severity_producer p = super # Configure each issue that should **not** be an error # p[Issues::MISSING_BINDINGS] = :warning p[Issues::MISSING_LAYERS] = :warning p end end