# File lib/new_relic/agent/configuration/yaml_source.rb, line 41 def validate_config_file_path(path) expanded_path = File.expand_path(path) if path.empty? || !File.exist?(expanded_path) warn_missing_config_file(expanded_path) return end expanded_path end