From 0f07beffe4184e61f36925eead34d0b3b14a0e62 Mon Sep 17 00:00:00 2001 From: simon lehericey Date: Mon, 8 Apr 2024 12:15:46 +0200 Subject: [PATCH] fix: typo in sidekiq transition --- config/initializers/transition_to_sidekiq.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/initializers/transition_to_sidekiq.rb b/config/initializers/transition_to_sidekiq.rb index 90f69319c..3f9d33160 100644 --- a/config/initializers/transition_to_sidekiq.rb +++ b/config/initializers/transition_to_sidekiq.rb @@ -34,7 +34,7 @@ if Rails.env.production? && SIDEKIQ_ENABLED self.queue_adapter = :sidekiq end - class WebhookJob < ApplicationJob + class WebHookJob < ApplicationJob self.queue_adapter = :sidekiq end