remove error handling if yaml load fails

This commit is contained in:
aakashb95
2025-12-17 15:19:43 +05:30
parent bf76fd3769
commit 1dde9329dd
-3
View File
@@ -87,9 +87,6 @@ module Llm::ConfigService
return {} unless File.exist?(CONFIG_PATH)
YAML.load_file(CONFIG_PATH) || {}
rescue StandardError => e
Rails.logger.error("Failed to load LLM config: #{e.message}")
{}
end
end
end