Sha256: e5c7bbc95676149f7ae2a7ac90fa6eee7283c5c34d1cec6d0f302d121b321017
Contents?: true
Size: 281 Bytes
Versions: 4
Compression:
Stored size: 281 Bytes
Contents
# frozen_string_literal: true module Panoptic class Jobs::RetriesController < ApplicationController def create @job = SolidQueue::Job.find(params[:job_id]) @job.retry redirect_to jobs_path, notice: "Successfully retried Job ##{@job.id}" end end end
Version data entries
4 entries across 4 versions & 1 rubygems