diff --git a/lib/shoryuken/worker/inline_executor.rb b/lib/shoryuken/worker/inline_executor.rb index 43cae614..64f268b2 100644 --- a/lib/shoryuken/worker/inline_executor.rb +++ b/lib/shoryuken/worker/inline_executor.rb @@ -20,7 +20,7 @@ def perform_async(worker_class, body, _options = {}) end def perform_in(worker_class, _interval, body, options = {}) - perform_async(worker_class, body, options) + worker_class.perform_async(body, options) end private