Skip to content

Commit

Permalink
there are more queues in production, we need to slow down the changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kjgarza committed Oct 8, 2019
1 parent f35e74e commit e931fea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/jobs/event_registrant_update_by_id_job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def get_crossref_member_id(id, options={})
# return "crossref.citations" unless doi.present?

url = "https://api.crossref.org/works/#{Addressable::URI.encode(doi)}[email protected]"
sleep(0.03) # to avoid crossref rate limitting
sleep(0.24) # to avoid crossref rate limitting
response = Maremma.get(url, host: true)
logger.info "[Crossref Response] [#{response.status}] for DOI #{doi} metadata"
return "" if response.status == 404 ### for cases when DOI is not in the crossreaf api
Expand All @@ -55,14 +55,14 @@ def get_crossref_member_id(id, options={})

def cached_get_doi_ra(doi)
Rails.cache.fetch("ras/#{doi}") do
puts "did not find key in cache, executing block ..."
puts "#{doi} [RA] did not find key in cache, executing block ..."
get_doi_ra(doi)
end
end

def cached_get_crossref_member_id(doi)
Rails.cache.fetch("members_ids/#{doi}") do
puts "did not find key in cache, executing block ..."
puts "#{doi} [Crossref Member] did not find key in cache, executing block ..."
get_crossref_member_id(doi)
end
end
Expand Down

0 comments on commit e931fea

Please sign in to comment.