You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/lib/resque/automatic_geocoder_jobs.rb

11 lines
285 B

require_relative './base_job'
module Resque
class AutomaticGeocoderJobs < BaseJob
@queue = :automatic_geocodings
def self.perform(options = {})
run_action(options, @queue, lambda { |options| AutomaticGeocoding[options.symbolize_keys[:job_id]].run })
end
end
end