From 2f41c6e954cf09b399ce88052f7f055ffc4aa260 Mon Sep 17 00:00:00 2001 From: ggman12 Date: Sun, 1 Feb 2026 22:31:49 -0500 Subject: [PATCH] update to 1 day chunk --- .github/workflows/process-historical-faa.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/process-historical-faa.yaml b/.github/workflows/process-historical-faa.yaml index 0153cd8..10756b6 100644 --- a/.github/workflows/process-historical-faa.yaml +++ b/.github/workflows/process-historical-faa.yaml @@ -22,9 +22,9 @@ jobs: ranges = [] current = start - # Process in 7-day chunks (weekly) + # Process in 1-day chunks (daily) while current < end: - chunk_end = current + timedelta(days=7) + chunk_end = current + timedelta(days=1) # Don't go past the end date if chunk_end > end: chunk_end = end