You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When ADRs, AFs, or MURs are published, our script will only looks up in the past 8 hours which cases need to be published to the website. The timeframe is from 06:00 - 19:55 EDT, 5:00 - 18:55 EST, and 10:00 - 23:55 UTC.
For EDT, the script runs from 06:00 - 19:55 EDT every 5 minutes and checks for published cases from the last 8 hours. Starting at 06:00 EDT, it will check published cases within the past 8 hours. This misses a little over 2 hours of time in which a case is published between 19:56 and 22:00 EDT.
The script runs from 05:00 - 18:55 EST every 5 minutes and checks for published cases from the last 8 hours. Starting at 05:00 EST, it will check published cases within the past 8 hours. This misses a little over 2 hours of time in which a case is published between 18:56 and 21:00 EST.
What's we're after
In order to account for the gap/missing time to check for published cases, we need to update the script so that it checks the entire interval between 19:56 - 6:00 EDT and 18:56 - 5:00 EST which cases have been published.
Completion criteria
Script runs for 10 hour period
The text was updated successfully, but these errors were encountered:
The problem
When ADRs, AFs, or MURs are published, our script will only looks up in the past 8 hours which cases need to be published to the website. The timeframe is from 06:00 - 19:55 EDT, 5:00 - 18:55 EST, and 10:00 - 23:55 UTC.
openFEC/webservices/tasks/__init__.py
Line 25 in 78adc4c
For EDT, the script runs from 06:00 - 19:55 EDT every 5 minutes and checks for published cases from the last 8 hours. Starting at 06:00 EDT, it will check published cases within the past 8 hours. This misses a little over 2 hours of time in which a case is published between 19:56 and 22:00 EDT.
The script runs from 05:00 - 18:55 EST every 5 minutes and checks for published cases from the last 8 hours. Starting at 05:00 EST, it will check published cases within the past 8 hours. This misses a little over 2 hours of time in which a case is published between 18:56 and 21:00 EST.
What's we're after
In order to account for the gap/missing time to check for published cases, we need to update the script so that it checks the entire interval between 19:56 - 6:00 EDT and 18:56 - 5:00 EST which cases have been published.
Completion criteria
The text was updated successfully, but these errors were encountered: