Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

Commit

Permalink
[Fix #49687085] Drug recall should not show up under food type
Browse files Browse the repository at this point in the history
  • Loading branch information
David Pranata committed May 13, 2013
1 parent 0539ce5 commit c7dcba9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/tasks/recalls.rake
Expand Up @@ -2,10 +2,10 @@ namespace :usagov do
namespace :recalls do
desc 'Load CDC food/drug recall data from RSS feed'
task import_cdc_data: :environment do
CdcData.import_from_rss_feed('http://www.fda.gov/AboutFDA/ContactFDA/StayInformed/RSSFeeds/Recalls/rss.xml', 'food', true)
CdcData.import_from_rss_feed('http://www.fda.gov/AboutFDA/ContactFDA/StayInformed/RSSFeeds/DrugRecalls/rss.xml', 'drug', true)
CdcData.import_from_rss_feed('http://www.fda.gov/AboutFDA/ContactFDA/StayInformed/RSSFeeds/FoodSafety/rss.xml', 'food', true)
CdcData.import_from_rss_feed('http://www.fsis.usda.gov/RSS/usdarss.xml', 'food', true)
CdcData.import_from_rss_feed('http://www2c.cdc.gov/podcasts/createrss.asp?c=146', 'food')
CdcData.import_from_rss_feed('http://www.fda.gov/AboutFDA/ContactFDA/StayInformed/RSSFeeds/DrugRecalls/rss.xml', 'drug')
end

desc 'Load CPSC recall data from XML feed'
Expand Down

0 comments on commit c7dcba9

Please sign in to comment.