Skip to content

Instantly share code, notes, and snippets.

@velotiotech
Created October 6, 2021 06:31
Show Gist options
  • Save velotiotech/ea2fc2f70438aa567525af7f23791abe to your computer and use it in GitHub Desktop.
Save velotiotech/ea2fc2f70438aa567525af7f23791abe to your computer and use it in GitHub Desktop.
class ElasticsearchWorker
include Sidekiq::Worker
def perform(id, klass)
begin
klass.constantize.find(id.to_s).reindex
rescue => e
# Handle exception
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment