class Honeybadger::ActiveSupportCacheMultiSubscriber

def expand_cache_keys_from_payload(data)

def expand_cache_keys_from_payload(data)
  return unless data
  data = data.keys if data.is_a?(Hash)
  Array(data).map do |k|
    ::ActiveSupport::Cache.expand_cache_key(k)
  end
end

def format_payload(payload)

def format_payload(payload)
  payload[:key] = expand_cache_keys_from_payload(payload[:key])
  payload[:hits] = expand_cache_keys_from_payload(payload[:hits])
  payload
end