# typed: true module UpGush module Middlewares class RetryCountMiddleware def call(worker, job_params, _queue) retry_count = job_params['retry_count'] worker.instance_variable_set(:@retry_count, retry_count) yield end end end end