From 3610c6cae729376368450e160d320e52de317be6 Mon Sep 17 00:00:00 2001 From: Zach Gollwitzer Date: Thu, 10 Oct 2024 19:29:20 -0400 Subject: [PATCH] Add observed holidays to sync exceptions --- app/models/gapfiller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/gapfiller.rb b/app/models/gapfiller.rb index ba8a57f4..f4f050f9 100644 --- a/app/models/gapfiller.rb +++ b/app/models/gapfiller.rb @@ -36,7 +36,7 @@ class Gapfiller end def holiday?(date) - Holidays.on(date, :federalreserve, :us, :informal).any? + Holidays.on(date, :federalreserve, :us, :observed, :informal).any? end def create_gapfilled_record(prev_record, date)