Class: OxylabsResultWorker
- Inherits:
-
Object
- Object
- OxylabsResultWorker
- Includes:
- Sidekiq::Worker
- Defined in:
- app/workers/oxylabs_result_worker.rb
Overview
DEPRECATED: This worker is no longer used.
Oxylabs webhooks are now processed via WebhookLog and WebhookProcessorWorker.
See Webhooks::V1::OxylabsController and WebhookProcessors::OxylabsProcessor.
This file is kept for backward compatibility with any in-flight jobs.
TODO: Remove this file after confirming no jobs are using it (after 2025-01-01)
Instance Method Summary collapse
Instance Method Details
#perform(payload) ⇒ Object
15 16 17 18 |
# File 'app/workers/oxylabs_result_worker.rb', line 15 def perform(payload) Rails.logger.warn '[OxylabsResultWorker] DEPRECATED: Using legacy worker. Migrate to WebhookLog system.' Retailer::WebhookResultProcessor.new.process(payload) end |