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
The “cited in this AO” should appear immediately, and the “this AO is cited by” should appear after the weekly reload (should have appeared for this one last weekend)
The text was updated successfully, but these errors were encountered:
I identified some others that were missing OCR text, but weren't NULL and Salient fixed those as well. These were harder to find- they weren't ' ' so I'm not sure how they were saved. I queried the length of the OCR text to find them:
SELECT ao_no, max(char_length(ocrtext))
FROM aouser.document
INNER JOIN aouser.ao USING (ao_id)
WHERE category = 'Final Opinion'
group by ao_no
having max(char_length(ocrtext)) < 100
order by ao_no desc
Now that all AO's have OCR text, I did a global reload so the "cited by" citations would be populated as well.
cf run-task api "python manage.py refresh_current_legal_docs_zero_downtime" -m 4G --name refresh-legal-20190403
https://www.fec.gov/data/legal/advisory-opinions/2019-01/
The “cited in this AO” should appear immediately, and the “this AO is cited by” should appear after the weekly reload (should have appeared for this one last weekend)
The text was updated successfully, but these errors were encountered: