class InvalidateSignaturesJob < ApplicationJob - InvalidateSignaturesJob has no descriptive comment
queue_as :high_priority
rescue_from(ActiveJob::DeserializationError) do |exception|
Appsignal.send_exception exception
end
def perform(invalidation) - InvalidateSignaturesJob#perform doesn't depend on instance state (maybe move it to another class?)
invalidation.invalidate!
end
end