From 1dde9329dd5b1f1e15a980e64c0ffa71a7309757 Mon Sep 17 00:00:00 2001 From: aakashb95 Date: Wed, 17 Dec 2025 15:19:43 +0530 Subject: [PATCH] remove error handling if yaml load fails --- lib/llm/config_service.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/llm/config_service.rb b/lib/llm/config_service.rb index 932e8a756..edfa38627 100644 --- a/lib/llm/config_service.rb +++ b/lib/llm/config_service.rb @@ -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